| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.kuali.student.lum.lu.dto; |
| 17 |
|
|
| 18 |
|
import java.io.Serializable; |
| 19 |
|
|
| 20 |
|
import javax.xml.bind.annotation.XmlAccessType; |
| 21 |
|
import javax.xml.bind.annotation.XmlAccessorType; |
| 22 |
|
import javax.xml.bind.annotation.XmlElement; |
| 23 |
|
|
| 24 |
|
import org.kuali.student.common.dto.TimeAmountInfo; |
| 25 |
|
|
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
@XmlAccessorType(XmlAccessType.FIELD) |
|
|
|
| 0% |
Uncovered Elements: 40 (40) |
Complexity: 20 |
Complexity Density: 1 |
|
| 30 |
|
public class CluCreditInfo implements Serializable { |
| 31 |
|
|
| 32 |
|
private static final long serialVersionUID = 1L; |
| 33 |
|
|
| 34 |
|
@XmlElement |
| 35 |
|
private String repeatCount; |
| 36 |
|
|
| 37 |
|
@XmlElement |
| 38 |
|
private TimeAmountInfo repeatTime; |
| 39 |
|
|
| 40 |
|
@XmlElement |
| 41 |
|
private String repeatUnits; |
| 42 |
|
|
| 43 |
|
@XmlElement |
| 44 |
|
private Integer minTotalUnits; |
| 45 |
|
|
| 46 |
|
@XmlElement |
| 47 |
|
private Integer maxTotalUnits; |
| 48 |
|
|
| 49 |
|
@XmlElement |
| 50 |
|
private Integer instructorUnits; |
| 51 |
|
|
| 52 |
|
@XmlElement |
| 53 |
|
private TimeAmountInfo minTimeToComplete; |
| 54 |
|
|
| 55 |
|
@XmlElement |
| 56 |
|
private TimeAmountInfo maxTimeToComplete; |
| 57 |
|
|
| 58 |
|
@XmlElement |
| 59 |
|
private TimeAmountInfo maxAllowableInactivity; |
| 60 |
|
|
| 61 |
|
@XmlElement |
| 62 |
|
private TimeAmountInfo maxTimeResultsRecognized; |
| 63 |
|
|
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 67 |
0
|
public String getRepeatCount() {... |
| 68 |
0
|
return repeatCount; |
| 69 |
|
} |
| 70 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 71 |
0
|
public void setRepeatCount(String repeatCount) {... |
| 72 |
0
|
this.repeatCount = repeatCount; |
| 73 |
|
} |
| 74 |
|
|
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 78 |
0
|
public TimeAmountInfo getRepeatTime() {... |
| 79 |
0
|
return repeatTime; |
| 80 |
|
} |
| 81 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 82 |
0
|
public void setRepeatTime(TimeAmountInfo repeatTime) {... |
| 83 |
0
|
this.repeatTime = repeatTime; |
| 84 |
|
} |
| 85 |
|
|
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 89 |
0
|
public String getRepeatUnits() {... |
| 90 |
0
|
return repeatUnits; |
| 91 |
|
} |
| 92 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 93 |
0
|
public void setRepeatUnits(String repeatUnits) {... |
| 94 |
0
|
this.repeatUnits = repeatUnits; |
| 95 |
|
} |
| 96 |
|
|
| 97 |
|
|
| 98 |
|
|
| 99 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 100 |
0
|
public Integer getMinTotalUnits() {... |
| 101 |
0
|
return minTotalUnits; |
| 102 |
|
} |
| 103 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 104 |
0
|
public void setMinTotalUnits(Integer minTotalUnits) {... |
| 105 |
0
|
this.minTotalUnits = minTotalUnits; |
| 106 |
|
} |
| 107 |
|
|
| 108 |
|
|
| 109 |
|
|
| 110 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 111 |
0
|
public Integer getMaxTotalUnits() {... |
| 112 |
0
|
return maxTotalUnits; |
| 113 |
|
} |
| 114 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 115 |
0
|
public void setMaxTotalUnits(Integer maxTotalUnits) {... |
| 116 |
0
|
this.maxTotalUnits = maxTotalUnits; |
| 117 |
|
} |
| 118 |
|
|
| 119 |
|
|
| 120 |
|
|
| 121 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 122 |
0
|
public Integer getInstructorUnits() {... |
| 123 |
0
|
return instructorUnits; |
| 124 |
|
} |
| 125 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 126 |
0
|
public void setInstructorUnits(Integer instructorUnits) {... |
| 127 |
0
|
this.instructorUnits = instructorUnits; |
| 128 |
|
} |
| 129 |
|
|
| 130 |
|
|
| 131 |
|
|
| 132 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 133 |
0
|
public TimeAmountInfo getMinTimeToComplete() {... |
| 134 |
0
|
return minTimeToComplete; |
| 135 |
|
} |
| 136 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 137 |
0
|
public void setMinTimeToComplete(TimeAmountInfo minTimeToComplete) {... |
| 138 |
0
|
this.minTimeToComplete = minTimeToComplete; |
| 139 |
|
} |
| 140 |
|
|
| 141 |
|
|
| 142 |
|
|
| 143 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 144 |
0
|
public TimeAmountInfo getMaxTimeToComplete() {... |
| 145 |
0
|
return maxTimeToComplete; |
| 146 |
|
} |
| 147 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 148 |
0
|
public void setMaxTimeToComplete(TimeAmountInfo maxTimeToComplete) {... |
| 149 |
0
|
this.maxTimeToComplete = maxTimeToComplete; |
| 150 |
|
} |
| 151 |
|
|
| 152 |
|
|
| 153 |
|
|
| 154 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 155 |
0
|
public TimeAmountInfo getMaxAllowableInactivity() {... |
| 156 |
0
|
return maxAllowableInactivity; |
| 157 |
|
} |
| 158 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 159 |
0
|
public void setMaxAllowableInactivity(TimeAmountInfo maxAllowableInactivity) {... |
| 160 |
0
|
this.maxAllowableInactivity = maxAllowableInactivity; |
| 161 |
|
} |
| 162 |
|
|
| 163 |
|
|
| 164 |
|
|
| 165 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 166 |
0
|
public TimeAmountInfo getMaxTimeResultsRecognized() {... |
| 167 |
0
|
return maxTimeResultsRecognized; |
| 168 |
|
} |
| 169 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 170 |
0
|
public void setMaxTimeResultsRecognized(TimeAmountInfo maxTimeResultsRecognized) {... |
| 171 |
0
|
this.maxTimeResultsRecognized = maxTimeResultsRecognized; |
| 172 |
|
} |
| 173 |
|
} |