Coverage Report - net.admin4j.util.NameValuePair
 
Classes in this File Line Coverage Branch Coverage Complexity
NameValuePair
60%
6/10
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.util;
 15  
 
 16  
 import java.io.Serializable;
 17  
 
 18  
 import net.admin4j.vo.BaseVO;
 19  
 
 20  
 public class NameValuePair extends BaseVO implements Serializable {
 21  
     private static final long serialVersionUID = 8364463926522622307L;
 22  
     private String name;
 23  
     private String value;
 24  
     
 25  21
     public NameValuePair(String name, String value) {
 26  21
         this.name = name;
 27  21
         this.value = value;
 28  21
     }
 29  
     
 30  
     public String getName() {
 31  18
         return name;
 32  
     }
 33  
     public void setName(String name) {
 34  0
         this.name = name;
 35  0
     }
 36  
     public String getValue() {
 37  18
         return value;
 38  
     }
 39  
     public void setValue(String value) {
 40  0
         this.value = value;
 41  0
     }
 42  
 }