Clover Coverage Report - Kuali Student 1.2-M6-SNAPSHOT (Aggregated)
Coverage timestamp: Mon Sep 12 2011 05:03:53 EDT
../../../../../../img/srcFileCovDistChart10.png 0% of files have more coverage
16   140   15   1.14
2   75   0.94   14
14     1.07  
1    
 
  CourseCrossListingInfo       Line # 42 16 0% 15 2 93.8% 0.9375
 
  (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.lum.course.dto;
17   
18    import java.io.Serializable;
19    import java.util.HashMap;
20    import java.util.Map;
21   
22    import javax.xml.bind.annotation.XmlAccessType;
23    import javax.xml.bind.annotation.XmlAccessorType;
24    import javax.xml.bind.annotation.XmlAttribute;
25    import javax.xml.bind.annotation.XmlElement;
26    import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
27   
28    import org.kuali.student.common.dto.HasAttributes;
29    import org.kuali.student.common.dto.Idable;
30    import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter;
31   
32    /**
33    * Detailed information about the human readable form of a Variation
34    *
35    * @Author KSContractMojo
36    * @Author Kamal
37    * @Since Tue May 18 11:31:09 PDT 2010
38    * @See <a href="https://test.kuali.org/confluence/display/KULSTU/courseCrossListingInfo+Structure">CourseCrossListingInfo</>
39    *
40    */
41    @XmlAccessorType(XmlAccessType.FIELD)
 
42    public class CourseCrossListingInfo implements Serializable, Idable, HasAttributes {
43   
44    private static final long serialVersionUID = 1L;
45   
46    @XmlElement
47    private String code;
48   
49    @XmlElement
50    private String subjectArea;
51   
52    @XmlElement
53    private String department;
54   
55    @XmlElement
56    private String courseNumberSuffix;
57   
58    @XmlElement
59    @XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class)
60    private Map<String, String> attributes;
61   
62    @XmlAttribute
63    private String type;
64   
65    @XmlAttribute
66    private String id;
67   
68   
69   
 
70  3 toggle public String getCode() {
71  3 return code;
72    }
73   
 
74  5 toggle public void setCode(String code) {
75  5 this.code = code;
76    }
77   
 
78  2 toggle public String getSubjectArea() {
79  2 return subjectArea;
80    }
81   
 
82  6 toggle public void setSubjectArea(String subjectArea) {
83  6 this.subjectArea = subjectArea;
84    }
85   
 
86  2 toggle public String getDepartment() {
87  2 return department;
88    }
89   
 
90  4 toggle public void setDepartment(String department) {
91  4 this.department = department;
92    }
93   
94    /**
95    * The "extra" portion of the code, which usually corresponds with the most detailed part of the number.
96    */
 
97  4 toggle public String getCourseNumberSuffix() {
98  4 return courseNumberSuffix;
99    }
100   
 
101  6 toggle public void setCourseNumberSuffix(String courseNumberSuffix) {
102  6 this.courseNumberSuffix = courseNumberSuffix;
103    }
104   
105    /**
106    * List of key/value pairs, typically used for dynamic attributes.
107    */
 
108  3 toggle public Map<String, String> getAttributes() {
109  3 if (attributes == null) {
110  1 attributes = new HashMap<String, String>();
111    }
112  3 return attributes;
113    }
114   
 
115  5 toggle public void setAttributes(Map<String, String> attributes) {
116  5 this.attributes = attributes;
117    }
118   
119    /**
120    * This is the CluIdentifier Type. It can only have a single value for VariationType
121    */
 
122  0 toggle public String getType() {
123  0 return type;
124    }
125   
 
126  4 toggle public void setType(String type) {
127  4 this.type = type;
128    }
129   
130    /**
131    * Identifies the particular identifier structure. This is set by the service to be able to determine changes and alterations to the structure as well as provides a handle for searches. This structure is not accessible through unique operations, and it is strongly recommended that no external references to this particular identifier be maintained.
132    */
 
133  2 toggle public String getId() {
134  2 return id;
135    }
136   
 
137  4 toggle public void setId(String id) {
138  4 this.id = id;
139    }
140    }