Subversion Repositories SmartDukaan

Rev

Rev 896 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
779 rajveer 1
package in.shop2020.test;
2
 
3
import org.apache.thrift.TException;
4
 
5
import in.shop2020.test.TestService.Iface;
6
 
7
 
8
public class TestHandler implements Iface{
9
 
10
	@Override
11
	public void sayHello(String message) throws TException {
12
		System.out.println("Hello Test");
13
 
14
	}
15
 
16
	@Override
17
	public String getUser(long id) throws TException {
18
		// TODO Auto-generated method stub
19
		return null;
20
	}
21
 
22
	@Override
23
	public void createUser(String name) throws TException {
24
		// TODO Auto-generated method stub
25
 
26
	}
27
 
28
	@Override
29
	public void closeSession() throws TException {
30
		// TODO Auto-generated method stub
31
 
32
	}
896 rajveer 33
 
34
	@Override
35
	public long getAddressId() throws TException {
36
		// TODO Auto-generated method stub
37
		return 0;
38
	}
39
 
40
	@Override
41
	public Address getAddress() throws TException {
42
		// TODO Auto-generated method stub
43
		return null;
44
	}
779 rajveer 45
 
46
}