| 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 |  |   | 
  | 31 |  |   | 
  | 32 |  |   | 
  | 33 | 0 |  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 |  |   | 
  | 57 |  |      public String getOrgId() { | 
  | 58 | 0 |          return orgId; | 
  | 59 |  |      } | 
  | 60 |  |   | 
  | 61 |  |      public void setOrgId(String orgId) { | 
  | 62 | 0 |          this.orgId = orgId; | 
  | 63 | 0 |      } | 
  | 64 |  |   | 
  | 65 |  |       | 
  | 66 |  |   | 
  | 67 |  |   | 
  | 68 |  |      public Date getEffectiveDate() { | 
  | 69 | 0 |          return effectiveDate; | 
  | 70 |  |      } | 
  | 71 |  |   | 
  | 72 |  |      public void setEffectiveDate(Date effectiveDate) { | 
  | 73 | 0 |          this.effectiveDate = effectiveDate; | 
  | 74 | 0 |      } | 
  | 75 |  |   | 
  | 76 |  |       | 
  | 77 |  |   | 
  | 78 |  |   | 
  | 79 |  |      public Date getExpirationDate() { | 
  | 80 | 0 |          return expirationDate; | 
  | 81 |  |      } | 
  | 82 |  |   | 
  | 83 |  |      public void setExpirationDate(Date expirationDate) { | 
  | 84 | 0 |          this.expirationDate = expirationDate; | 
  | 85 | 0 |      } | 
  | 86 |  |   | 
  | 87 |  |       | 
  | 88 |  |   | 
  | 89 |  |   | 
  | 90 |  |      public Map<String, String> getAttributes() { | 
  | 91 | 0 |          if (attributes == null) { | 
  | 92 | 0 |              attributes = new HashMap<String, String>(); | 
  | 93 |  |          } | 
  | 94 | 0 |          return attributes; | 
  | 95 |  |      } | 
  | 96 |  |   | 
  | 97 |  |      public void setAttributes(Map<String, String> attributes) { | 
  | 98 | 0 |          this.attributes = attributes; | 
  | 99 | 0 |      } | 
  | 100 |  |       | 
  | 101 |  |       | 
  | 102 |  |   | 
  | 103 |  |   | 
  | 104 |  |   | 
  | 105 |  |      public MetaInfo getMetaInfo() { | 
  | 106 | 0 |          return metaInfo; | 
  | 107 |  |      } | 
  | 108 |  |   | 
  | 109 |  |      public void setMetaInfo(MetaInfo metaInfo) { | 
  | 110 | 0 |          this.metaInfo = metaInfo; | 
  | 111 | 0 |      } | 
  | 112 |  |       | 
  | 113 |  |       | 
  | 114 |  |   | 
  | 115 |  |   | 
  | 116 |  |      public String getId() { | 
  | 117 | 0 |          return id; | 
  | 118 |  |      } | 
  | 119 |  |   | 
  | 120 |  |      public void setId(String id) { | 
  | 121 | 0 |          this.id = id; | 
  | 122 | 0 |      } | 
  | 123 |  |  } |