| 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 |
|
import java.util.Date; |
| 20 |
|
import java.util.HashMap; |
| 21 |
|
import java.util.Map; |
| 22 |
|
|
| 23 |
|
import org.kuali.student.common.dto.HasAttributes; |
| 24 |
|
import org.kuali.student.common.dto.Idable; |
| 25 |
|
import org.kuali.student.common.dto.MetaInfo; |
| 26 |
|
|
| 27 |
|
|
| 28 |
|
|
| 29 |
|
|
| 30 |
|
@author |
| 31 |
|
|
| 32 |
|
|
|
|
|
| 0% |
Uncovered Elements: 28 (28) |
Complexity: 13 |
Complexity Density: 0.93 |
|
| 33 |
|
public class AccreditationInfo implements Serializable, Idable, HasAttributes { |
| 34 |
|
|
| 35 |
|
private static final long serialVersionUID = 1L; |
| 36 |
|
|
| 37 |
|
private String id; |
| 38 |
|
|
| 39 |
|
private String orgId; |
| 40 |
|
|
| 41 |
|
|
| 42 |
|
private Date effectiveDate; |
| 43 |
|
|
| 44 |
|
|
| 45 |
|
private Date expirationDate; |
| 46 |
|
|
| 47 |
|
private Map<String, String> attributes; |
| 48 |
|
|
| 49 |
|
private MetaInfo metaInfo; |
| 50 |
|
|
| 51 |
|
|
| 52 |
|
|
| 53 |
|
|
| 54 |
|
|
| 55 |
|
|
| 56 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 57 |
0
|
public String getOrgId() {... |
| 58 |
0
|
return orgId; |
| 59 |
|
} |
| 60 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
public void setOrgId(String orgId) {... |
| 62 |
0
|
this.orgId = orgId; |
| 63 |
|
} |
| 64 |
|
|
| 65 |
|
|
| 66 |
|
|
| 67 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 68 |
0
|
public Date getEffectiveDate() {... |
| 69 |
0
|
return effectiveDate; |
| 70 |
|
} |
| 71 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 72 |
0
|
public void setEffectiveDate(Date effectiveDate) {... |
| 73 |
0
|
this.effectiveDate = effectiveDate; |
| 74 |
|
} |
| 75 |
|
|
| 76 |
|
|
| 77 |
|
|
| 78 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 79 |
0
|
public Date getExpirationDate() {... |
| 80 |
0
|
return expirationDate; |
| 81 |
|
} |
| 82 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 83 |
0
|
public void setExpirationDate(Date expirationDate) {... |
| 84 |
0
|
this.expirationDate = expirationDate; |
| 85 |
|
} |
| 86 |
|
|
| 87 |
|
|
| 88 |
|
|
| 89 |
|
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
| 90 |
0
|
public Map<String, String> getAttributes() {... |
| 91 |
0
|
if (attributes == null) { |
| 92 |
0
|
attributes = new HashMap<String, String>(); |
| 93 |
|
} |
| 94 |
0
|
return attributes; |
| 95 |
|
} |
| 96 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 97 |
0
|
public void setAttributes(Map<String, String> attributes) {... |
| 98 |
0
|
this.attributes = attributes; |
| 99 |
|
} |
| 100 |
|
|
| 101 |
|
|
| 102 |
|
|
| 103 |
|
|
| 104 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 105 |
0
|
public MetaInfo getMetaInfo() {... |
| 106 |
0
|
return metaInfo; |
| 107 |
|
} |
| 108 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 109 |
0
|
public void setMetaInfo(MetaInfo metaInfo) {... |
| 110 |
0
|
this.metaInfo = metaInfo; |
| 111 |
|
} |
| 112 |
|
|
| 113 |
|
|
| 114 |
|
|
| 115 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 116 |
0
|
public String getId() {... |
| 117 |
0
|
return id; |
| 118 |
|
} |
| 119 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 120 |
0
|
public void setId(String id) {... |
| 121 |
0
|
this.id = id; |
| 122 |
|
} |
| 123 |
|
} |