KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > latka > http > CredentialsImpl


1 /*
2  * Copyright 1999-2002,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16
17 package org.apache.commons.latka.http;
18
19 /** Concrete Implementation of
20  * {@link org.apache.commons.latka.http.Credentials Credentials}
21  *
22  * @author Morgan Delagrange
23  * @author <a HREF="mailto:dion@multitask.com.au">dIon Gillard</a>
24  * @version $Id: CredentialsImpl.java 155424 2005-02-26 13:09:29Z dirkv $
25  * @see org.apache.commons.latka.http.Credentials
26  */

27 public class CredentialsImpl implements Credentials {
28
29     /** holds user name
30      */

31     protected String JavaDoc _userName = null;
32     
33     /** holds password
34      */

35     protected String JavaDoc _password = null;
36
37     /**
38      * Create credentials given user name and password
39      * @param userName the user's name
40      * @param password the user's password
41      */

42     public CredentialsImpl(String JavaDoc userName, String JavaDoc password) {
43         _userName = userName;
44         _password = password;
45     }
46
47     /**
48      * return the user's name
49      * @return the user's name
50      */

51     public String JavaDoc getUserName() {
52         return _userName;
53     }
54
55     /**
56      * return the user's password
57      * @return the user's password
58      */

59     public String JavaDoc getPassword() {
60         return _password;
61     }
62 }
63
Popular Tags