Subversion Repositories SmartDukaan

Rev

Rev 399 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 399 Rev 408
Line 1... Line 1...
1
package in.shop2020.serving.controllers;
1
package in.shop2020.serving.controllers;
2
 
2
 
-
 
3
import com.thoughtworks.xstream.annotations.XStreamAlias;
-
 
4
 
-
 
5
@XStreamAlias("auth")
3
public class Auth {
6
public class Auth {
4
	
7
	
5
	private String id;
8
	private String id;
6
	
9
	
7
	private String userName;
10
	private String userName;
8
	private String password;
11
	private String password;
9
	
12
	
10
	public Auth(){
-
 
11
		super();
-
 
12
	}
-
 
13
	
13
	
14
	public Auth(String id, String userName, String password){
-
 
15
		super();
-
 
16
		this.id = id;
-
 
17
		this.userName = userName;
-
 
18
		this.password = password;
-
 
19
	}
-
 
20
	
14
	
21
	public String getId() {
15
	public String getId() {
22
		return id;
16
		return id;
23
	}
17
	}
24
 
18