Coverage Report - org.kuali.student.core.statement.dto.ReqComponentInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
ReqComponentInfo
0%
0/31
0%
0/2
1.053
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.core.statement.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 import java.util.ArrayList;
 20  
 import java.util.Date;
 21  
 import java.util.List;
 22  
 
 23  
 import javax.xml.bind.annotation.XmlAccessType;
 24  
 import javax.xml.bind.annotation.XmlAccessorType;
 25  
 import javax.xml.bind.annotation.XmlAttribute;
 26  
 import javax.xml.bind.annotation.XmlElement;
 27  
 
 28  
 import org.kuali.student.common.dto.HasTypeState;
 29  
 import org.kuali.student.common.dto.Idable;
 30  
 import org.kuali.student.common.dto.MetaInfo;
 31  
 import org.kuali.student.common.dto.RichTextInfo;
 32  
 
 33  
 /**
 34  
  *Information about a requirement component.
 35  
  */ 
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  0
 public class ReqComponentInfo implements Serializable, Idable, HasTypeState {
 38  
 
 39  
         private static final long serialVersionUID = 1L;
 40  
 
 41  
     @XmlElement
 42  
     private RichTextInfo desc;
 43  
 
 44  
     @XmlElement
 45  
     private List<ReqCompFieldInfo> reqCompFields;
 46  
 
 47  
     @XmlElement
 48  
     private Date effectiveDate;
 49  
 
 50  
     @XmlElement
 51  
     private Date expirationDate;
 52  
 
 53  
     @XmlElement
 54  
     private MetaInfo metaInfo;
 55  
 
 56  
     @XmlAttribute
 57  
     private String type;
 58  
 
 59  
     @XmlAttribute
 60  
     private String state;
 61  
 
 62  
     @XmlAttribute
 63  
     private String id;
 64  
 
 65  
     /**
 66  
      * <code>naturalLanguageTranslation</code> attribute is a read-only 
 67  
      * attribute which is generated on-the-fly and should not be persisted.
 68  
      */
 69  
     @XmlAttribute
 70  
     private String naturalLanguageTranslation;
 71  
     
 72  
         /**
 73  
      * Narrative description of the requirement component.
 74  
      */
 75  
     public RichTextInfo getDesc() {
 76  0
         return desc;
 77  
     }
 78  
 
 79  
     public void setDesc(RichTextInfo desc) {
 80  0
         this.desc = desc;
 81  0
     }
 82  
 
 83  
     /**
 84  
      * Detailed information about a requirement component field value.
 85  
      */
 86  
     public List<ReqCompFieldInfo> getReqCompFields() {
 87  0
         if(null == reqCompFields) {
 88  0
             reqCompFields = new ArrayList<ReqCompFieldInfo>();
 89  
         }
 90  0
         return reqCompFields;
 91  
     }
 92  
 
 93  
     public void setReqCompFields(List<ReqCompFieldInfo> reqCompFields) {
 94  0
         this.reqCompFields = reqCompFields;
 95  0
     }
 96  
 
 97  
     /**
 98  
      * Date and time that this requirement component became effective. This is a similar concept to the effective date on enumerated values. When an expiration date has been specified, this field must be less than or equal to the expiration date.
 99  
      */
 100  
     public Date getEffectiveDate() {
 101  0
         return effectiveDate;
 102  
     }
 103  
 
 104  
     public void setEffectiveDate(Date effectiveDate) {
 105  0
         this.effectiveDate = effectiveDate;
 106  0
     }
 107  
 
 108  
     /**
 109  
      * Date and time that this requirement component expires. This is a similar concept to the expiration date on enumerated values. If specified, this must be greater than or equal to the effective date. If this field is not specified, then no expiration date has been currently defined and should automatically be considered greater than the effective date.
 110  
      */
 111  
     public Date getExpirationDate() {
 112  0
         return expirationDate;
 113  
     }
 114  
 
 115  
     public void setExpirationDate(Date expirationDate) {
 116  0
         this.expirationDate = expirationDate;
 117  0
     }
 118  
 
 119  
     /**
 120  
      * Create and last update info for the structure. This is optional and treated as read only since the data is set by the internals of the service during maintenance operations.
 121  
      */
 122  
     public MetaInfo getMetaInfo() {
 123  0
         return metaInfo;
 124  
     }
 125  
 
 126  
     public void setMetaInfo(MetaInfo metaInfo) {
 127  0
         this.metaInfo = metaInfo;
 128  0
     }
 129  
 
 130  
     /**
 131  
      * Unique identifier for a requirement component type.
 132  
      */
 133  
     public String getType() {
 134  0
         return type;
 135  
     }
 136  
 
 137  
     public void setType(String type) {
 138  0
         this.type = type;
 139  0
     }
 140  
     
 141  
         /**
 142  
      * The current status of the requirement component. The values for this field are constrained to those in the reqComponentState enumeration. A separate setup operation does not exist for retrieval of the meta data around this value.
 143  
      */
 144  
     public String getState() {
 145  0
         return state;
 146  
     }
 147  
 
 148  
     public void setState(String state) {
 149  0
         this.state = state;
 150  0
     }
 151  
 
 152  
     /**
 153  
      * Unique identifier for a requirement component. This is optional, due to the identifier being set at the time of creation. Once the requirement component has been created, this should be seen as required.
 154  
      */
 155  
     public String getId() {
 156  0
         return id;
 157  
     }
 158  
 
 159  
     public void setId(String id) {
 160  0
         this.id = id;
 161  0
     }
 162  
 
 163  
         public String getNaturalLanguageTranslation() {
 164  0
                 return naturalLanguageTranslation;
 165  
         }
 166  
 
 167  
         public void setNaturalLanguageTranslation(String naturalLanguageTranslation) {
 168  0
                 this.naturalLanguageTranslation = naturalLanguageTranslation;
 169  0
         }
 170  
 
 171  
     @Override
 172  
         public String toString() {
 173  0
                 return "ReqComponentInfo[id=" + id + ", type=" + type + ", state="
 174  
                                 + state + "]";
 175  
         }
 176  
 }