| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| LuiPersonRelationCriteriaInfo |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2009 The Kuali Foundation | |
| 3 | * | |
| 4 | * Licensed under the Educational Community License, Version 1.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/ecl1.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.student.enrollment.lpr.dto; | |
| 17 | ||
| 18 | import javax.xml.bind.annotation.XmlAccessType; | |
| 19 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 20 | import javax.xml.bind.annotation.XmlElement; | |
| 21 | import java.io.Serializable; | |
| 22 | ||
| 23 | /** | |
| 24 | * Query to return some information regarding LUI to person relationships. | |
| 25 | * | |
| 26 | * @Author KSContractMojo | |
| 27 | * @Author Kamal | |
| 28 | * @Since Tue Mar 01 15:54:06 PST 2011 | |
| 29 | * @See <a href="https://wiki.kuali.org/display/KULSTU/luiPersonRelationCriteria+Structure">LuiPersonRelationCriteria</a> | |
| 30 | */ | |
| 31 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 32 | 0 | public class LuiPersonRelationCriteriaInfo implements Serializable { |
| 33 | ||
| 34 | private static final long serialVersionUID = 1L; | |
| 35 | ||
| 36 | @XmlElement | |
| 37 | private String fieldKey; | |
| 38 | ||
| 39 | @XmlElement | |
| 40 | private String value; | |
| 41 | ||
| 42 | /** | |
| 43 | * Name: Field Key | |
| 44 | * <p/> | |
| 45 | * Dot path notation to identity the name of field to be compared | |
| 46 | */ | |
| 47 | public String getFieldKey() { | |
| 48 | 0 | return fieldKey; |
| 49 | } | |
| 50 | ||
| 51 | public void setFieldKey(String fieldKey) { | |
| 52 | 0 | this.fieldKey = fieldKey; |
| 53 | 0 | } |
| 54 | ||
| 55 | ||
| 56 | /** | |
| 57 | * Name: Criteria Value | |
| 58 | * <p/> | |
| 59 | * Value to be compared | |
| 60 | */ | |
| 61 | public String getValue() { | |
| 62 | 0 | return value; |
| 63 | } | |
| 64 | ||
| 65 | public void setValue(String value) { | |
| 66 | 0 | this.value = value; |
| 67 | 0 | } |
| 68 | ||
| 69 | ||
| 70 | } |