View Javadoc

1   /**
2    * Copyright 2005-2012 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  package org.kuali.rice.edl.framework.extract;
17  
18  import java.io.Serializable;
19  
20  public class FieldDTO implements Serializable {
21  
22  	private static final long serialVersionUID = -6136544551121011531L;
23  
24  	private Long fieldId;
25  	private String docId;
26  	private String fieldName;
27  	private String fieldValue;
28  	private Integer lockVerNbr;
29  
30  	public Long getFieldId() {
31  		return fieldId;
32  	}
33  	public String getDocId() {
34  		return docId;
35  	}
36  	public void setDocId(final String docId) {
37  		this.docId = docId;
38  	}
39  	public String getFieldValue() {
40  		return fieldValue;
41  	}
42  	public void setFieldValue(final String fieldValue) {
43  		this.fieldValue = fieldValue;
44  	}
45  	public String getFiledName() {
46  		return fieldName;
47  	}
48  	public void setFieldName(final String filedName) {
49  		this.fieldName = filedName;
50  	}
51  	public Integer getLockVerNbr() {
52  		return lockVerNbr;
53  	}
54  	public void setLockVerNbr(final Integer lockVerNbr) {
55  		this.lockVerNbr = lockVerNbr;
56  	}
57  }
58