Subversion Repositories SmartDukaan

Rev

Rev 167 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
167 ashish 1
package in.shop2020.hotspot.dashbaord.shared.actions;
2
 
3
import net.customware.gwt.dispatch.shared.Action;
4
 
5
public class AuthRequest implements Action<AuthResponse>{
6
 
7
	private static final long serialVersionUID = 5804421607858017477L;
8
 
9
	private String username;
10
	private String password;
11
 
12
	@SuppressWarnings("unused")
13
	private AuthRequest(){
14
 
15
	}
16
 
17
	public AuthRequest(String username, String password){
18
		this.username = username;
19
		this.password = password;
20
	}
21
 
22
	public String getUsername() {
23
		return username;
24
	}
25
 
26
	public String getPassword() {
27
		return password;
28
	}
29
}