1 /*
2 Bloof - visualize the evolution of your software project
3 Copyright ( C ) 2003 Lukasz Pekacki <lukasz@pekacki.de>
4 http://bloof.sf.net/
5
6 This file was part of JavaCVS by Nicholas Allen ( nallen@freenet.co.uk ).
7
8 This program is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License along with
17 this program; if not, write to the Free Software Foundation, Inc.,
18 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 $RCSfile: LoginDetails.java,v $
21 Created on $Date: 2003/05/30 13:52:21 $
22 */
23
24 package net.sf.bloof.scm.cvsplugin;
25
26 /***
27 * Defines details needed for logging in to servers that require password
28 * authorization.
29 * @author Nicholas Allen
30 * @author Lukasz Pekacki
31 */
32
33 public class LoginDetails {
34 /***
35 * Createas a LoginDetail object with the given username and password
36 * @param aUserName name of the user
37 * @param aPassword password of the user
38 */
39 public LoginDetails( String aUserName, String aPassword ) {
40 mUserName = aUserName;
41 mPassword = aPassword;
42 }
43 /***
44 * Method getPassword.
45 * @return String
46 */
47 public String getPassword( ) {
48 return mPassword;
49 }
50
51 /***
52 * Method getUserName.
53 * @return String
54 */
55 public String getUserName( ) {
56 return mUserName;
57 }
58 private String mUserName, mPassword;
59
60 }
This page was automatically generated by Maven