Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/flexstor/common/gui/login/LoginUserData.java


1   /*
2    * LoginUserData.java
3    *
4    * Copyright $Date: 2003/08/11 02:22:48 $ FLEXSTOR.net Inc.
5    *
6    * This work is licensed for use and distribution under license terms found at
7    * http://www.flexstor.org/license.html
8    *
9    */
10  
11  package com.flexstor.common.gui.login;
12  
13  public class LoginUserData
14  {
15     private String sUserID, sPassword, sNewPassword;
16     
17     public LoginUserData ( String sUserID, String sPassword )
18     {
19        this ( sUserID, sPassword, sPassword );
20     }
21  
22     public LoginUserData ( String sUserID, String sPassword, String sNewPassword )
23     {
24        this.sUserID      = sUserID;
25        this.sPassword    = sPassword;
26        this.sNewPassword = sNewPassword;
27     }
28     
29     public void setUserID ( String sUserID )
30     {
31        this.sUserID = sUserID;
32     }
33     
34     public String getUserID ( )
35     {
36        return sUserID;
37     }
38  
39     public void setPassword ( String sPassword )
40     {
41        this.sPassword = sPassword;
42     }
43     
44     public String getPassword ( )
45     {
46        return sPassword;
47     }
48  
49     public void setNewPassword ( String sNewPassword )
50     {
51        this.sNewPassword = sNewPassword;
52     }
53     
54     public String getNewPassword ( )
55     {
56        return sNewPassword;
57     }
58  }