01: package org.claros.commons.auth.models;
02:
03: /**
04: * @author Umut Gokbayrak
05: *
06: */
07: public class AuthProfile {
08: private String username;
09: private String password;
10:
11: public AuthProfile() {
12: super ();
13: }
14:
15: /**
16: * @return Returns the password.
17: */
18: public String getPassword() {
19: return password;
20: }
21:
22: /**
23: * @param password The password to set.
24: */
25: public void setPassword(String password) {
26: this .password = password;
27: }
28:
29: /**
30: * @return Returns the username.
31: */
32: public String getUsername() {
33: return username;
34: }
35:
36: /**
37: * @param username The username to set.
38: */
39: public void setUsername(String username) {
40: this.username = username;
41: }
42: }
|