Coverage Report - org.apache.commons.latka.http.CredentialsImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
CredentialsImpl
0%
0/8
N/A
1
 
 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  0
     protected String _userName = null;
 32  
     
 33  
     /** holds password
 34  
      */
 35  0
     protected String _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  0
     public CredentialsImpl(String userName, String password) {
 43  0
         _userName = userName;
 44  0
         _password = password;
 45  0
     }
 46  
 
 47  
     /** 
 48  
      * return the user's name
 49  
      * @return the user's name
 50  
      */
 51  
     public String getUserName() {
 52  0
         return _userName;
 53  
     }
 54  
 
 55  
     /**
 56  
      * return the user's password
 57  
      * @return the user's password
 58  
      */    
 59  
     public String getPassword() {
 60  0
         return _password;
 61  
     }
 62  
 }