| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| LuiPersonRelationCriteriaInfc |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2011 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.osedu.org/licenses/ECL-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 | package org.kuali.student.enrollment.lpr.infc; | |
| 17 | ||
| 18 | //import com.sun.xml.internal.bind.AnyTypeAdapter; | |
| 19 | ||
| 20 | import javax.xml.bind.annotation.XmlAccessType; | |
| 21 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 22 | import javax.xml.bind.annotation.XmlRootElement; | |
| 23 | ||
| 24 | @XmlRootElement | |
| 25 | //@XmlJavaTypeAdapter(AnyTypeAdapter.class) | |
| 26 | @XmlAccessorType(XmlAccessType.PROPERTY) | |
| 27 | public interface LuiPersonRelationCriteriaInfc { | |
| 28 | ||
| 29 | /** | |
| 30 | * Set ???? | |
| 31 | * <p/> | |
| 32 | * Type: String | |
| 33 | * <p/> | |
| 34 | * Name: Field | |
| 35 | * Dot path notation to identity the name of field to be compared | |
| 36 | */ | |
| 37 | public void setFieldKey(String fieldKey); | |
| 38 | ||
| 39 | /** | |
| 40 | * Get ???? | |
| 41 | * <p/> | |
| 42 | * Type: String | |
| 43 | * <p/> | |
| 44 | * Name: Field | |
| 45 | * Dot path notation to identity the name of field to be compared | |
| 46 | */ | |
| 47 | public String getFieldKey(); | |
| 48 | ||
| 49 | /** | |
| 50 | * Set ???? | |
| 51 | * <p/> | |
| 52 | * Type: String | |
| 53 | * <p/> | |
| 54 | * Name: Criteria | |
| 55 | * Value to be compared | |
| 56 | */ | |
| 57 | public void setValue(String value); | |
| 58 | ||
| 59 | /** | |
| 60 | * Get ???? | |
| 61 | * <p/> | |
| 62 | * Type: String | |
| 63 | * <p/> | |
| 64 | * Name: Criteria | |
| 65 | * Value to be compared | |
| 66 | */ | |
| 67 | public String getValue(); | |
| 68 | } | |
| 69 |