Coverage Report - org.kuali.rice.edl.framework.extract.FieldDTO
 
Classes in this File Line Coverage Branch Coverage Complexity
FieldDTO
0%
0/14
N/A
1
 
 1  
 /*
 2  
  * Copyright 2005-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
 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.kuali.rice.edl.framework.extract;
 18  
 
 19  
 import java.io.Serializable;
 20  
 
 21  0
 public class FieldDTO implements Serializable {
 22  
 
 23  
         private static final long serialVersionUID = -6136544551121011531L;
 24  
 
 25  
         private Long fieldId;
 26  
         private String docId;
 27  
         private String fieldName;
 28  
         private String fieldValue;
 29  
         private Integer lockVerNbr;
 30  
 
 31  
         public Long getFieldId() {
 32  0
                 return fieldId;
 33  
         }
 34  
         public String getDocId() {
 35  0
                 return docId;
 36  
         }
 37  
         public void setDocId(final String docId) {
 38  0
                 this.docId = docId;
 39  0
         }
 40  
         public String getFieldValue() {
 41  0
                 return fieldValue;
 42  
         }
 43  
         public void setFieldValue(final String fieldValue) {
 44  0
                 this.fieldValue = fieldValue;
 45  0
         }
 46  
         public String getFiledName() {
 47  0
                 return fieldName;
 48  
         }
 49  
         public void setFieldName(final String filedName) {
 50  0
                 this.fieldName = filedName;
 51  0
         }
 52  
         public Integer getLockVerNbr() {
 53  0
                 return lockVerNbr;
 54  
         }
 55  
         public void setLockVerNbr(final Integer lockVerNbr) {
 56  0
                 this.lockVerNbr = lockVerNbr;
 57  0
         }
 58  
 }
 59