001/** 002 * Copyright 2010 The Kuali Foundation Licensed under the 003 * Educational Community License, Version 2.0 (the "License"); you may 004 * not use this file except in compliance with the License. You may 005 * obtain a copy of the License at 006 * 007 * http://www.osedu.org/licenses/ECL-2.0 008 * 009 * Unless required by applicable law or agreed to in writing, 010 * software distributed under the License is distributed on an "AS IS" 011 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 012 * or implied. See the License for the specific language governing 013 * permissions and limitations under the License. 014 */ 015 016package org.kuali.student.r2.lum.lu.entity; 017 018import java.util.ArrayList; 019import java.util.Date; 020import java.util.List; 021 022import javax.persistence.CascadeType; 023import javax.persistence.Column; 024import javax.persistence.Entity; 025import javax.persistence.JoinColumn; 026import javax.persistence.JoinTable; 027import javax.persistence.ManyToMany; 028import javax.persistence.ManyToOne; 029import javax.persistence.NamedQueries; 030import javax.persistence.NamedQuery; 031import javax.persistence.OneToMany; 032import javax.persistence.OneToOne; 033import javax.persistence.Table; 034import javax.persistence.Temporal; 035import javax.persistence.TemporalType; 036 037import org.kuali.student.r1.common.entity.AttributeOwner; 038import org.kuali.student.r1.common.entity.MetaEntity; 039 040@Entity 041@Table(name = "KSLU_CLU_SET") 042@NamedQueries( { 043 @NamedQuery(name = "CluSet.getCluSetInfoByIdList", query = "SELECT c FROM CluSet c WHERE c.id IN (:cluSetIdList)"), 044 @NamedQuery(name = "CluSet.isCluInCluSet", query = "SELECT COUNT(cluSet) FROM CluSet cluSet JOIN cluSet.cluVerIndIds cluVerIndIds WHERE cluSet.id = :cluSetId AND cluVerIndIds.cluVersionIndId = :cluId "), 045 @NamedQuery(name = "CluSet.findCluSetsByCluVersionIndIds", query = "SELECT j.cluSet FROM CluSetJoinVersionIndClu j WHERE j.cluVersionIndId IN (:cluVersionIndIds)"), 046 @NamedQuery(name = "CluSet.findAllDynamicCluSets", query = "SELECT cluSet FROM CluSet cluSet WHERE cluSet.membershipQuery IS NULL") 047}) 048public class CluSet extends MetaEntity implements AttributeOwner<CluSetAttribute> { 049 050 @Column(name = "NAME") 051 private String name; 052 053 @ManyToOne(cascade=CascadeType.ALL) 054 @JoinColumn(name = "RT_DESCR_ID") 055 private LuRichText descr; 056 057 @Temporal(TemporalType.TIMESTAMP) 058 @Column(name = "EFF_DT") 059 private Date effectiveDate; 060 061 @Temporal(TemporalType.TIMESTAMP) 062 @Column(name = "EXPIR_DT") 063 private Date expirationDate; 064 065 @ManyToMany 066 @JoinTable(name = "KSLU_CLU_SET_JN_CLU_SET", joinColumns = @JoinColumn(name = "CLU_SET_PARENT_ID"), inverseJoinColumns = @JoinColumn(name = "CLU_SET_CHILD_ID")) 067 private List<CluSet> cluSets = new ArrayList<CluSet>(); 068 069// @ManyToMany 070// @JoinTable(name = "KSLU_CLU_SET_JN_CLU", joinColumns = @JoinColumn(name = "CLU_SET_ID"), inverseJoinColumns = @JoinColumn(name = "CLU_ID")) 071// private List<Clu> clus = new ArrayList<Clu>(); 072 073 @OneToMany(mappedBy="cluSet",cascade=CascadeType.ALL) 074 private List<CluSetJoinVersionIndClu> cluVerIndIds = new ArrayList<CluSetJoinVersionIndClu>(); 075 076 @OneToMany(cascade = CascadeType.ALL, mappedBy = "owner") 077 private List<CluSetAttribute> attributes = new ArrayList<CluSetAttribute>(); 078 079 @Column(name="TYPE") 080 private String type; 081 082 @Column(name = "ST") 083 private String state; 084 085 @Column(name = "ADMIN_ORG_ID") 086 private String adminOrg; 087 088 @OneToOne(cascade=CascadeType.ALL) 089 @JoinColumn(name="MEM_QUERY_ID") 090 private MembershipQuery membershipQuery; 091 092 @Column(name = "REUSABLE") 093 private Boolean isReusable; 094 095 @Column(name = "REFERENCEABLE") 096 private Boolean isReferenceable; 097 098// public List<Clu> getClus() { 099// return clus; 100// } 101// 102// public void setClus(List<Clu> clus) { 103// this.clus = clus; 104// } 105 106 public String getName() { 107 return name; 108 } 109 110 public void setName(String name) { 111 this.name = name; 112 } 113 114 public LuRichText getDescr() { 115 return descr; 116 } 117 118 public void setDescr(LuRichText descr) { 119 this.descr = descr; 120 } 121 122 public Date getEffectiveDate() { 123 return effectiveDate; 124 } 125 126 public void setEffectiveDate(Date effectiveDate) { 127 this.effectiveDate = effectiveDate; 128 } 129 130 public Date getExpirationDate() { 131 return expirationDate; 132 } 133 134 public void setExpirationDate(Date expirationDate) { 135 this.expirationDate = expirationDate; 136 } 137 138 public List<CluSet> getCluSets() { 139 return cluSets; 140 } 141 142 public void setCluSets(List<CluSet> cluSets) { 143 this.cluSets = cluSets; 144 } 145 146 public List<CluSetAttribute> getAttributes() { 147 return attributes; 148 } 149 150 public void setAttributes(List<CluSetAttribute> attributes) { 151 this.attributes = attributes; 152 } 153 154 public String getType() { 155 return type; 156 } 157 158 public void setType(String type) { 159 this.type = type; 160 } 161 162 public String getState() { 163 return state; 164 } 165 166 public void setState(String state) { 167 this.state = state; 168 } 169 170 public String getAdminOrg() { 171 return adminOrg; 172 } 173 174 public void setAdminOrg(String adminOrg) { 175 this.adminOrg = adminOrg; 176 } 177 178 public MembershipQuery getMembershipQuery() { 179 return membershipQuery; 180 } 181 182 public void setMembershipQuery(MembershipQuery membershipQuery) { 183 this.membershipQuery = membershipQuery; 184 } 185 186 public Boolean getIsReusable() { 187 return isReusable; 188 } 189 190 public void setIsReusable(Boolean isReusable) { 191 this.isReusable = isReusable; 192 } 193 194 public Boolean getIsReferenceable() { 195 return isReferenceable; 196 } 197 198 public void setIsReferenceable(Boolean isReferenceable) { 199 this.isReferenceable = isReferenceable; 200 } 201 202 public List<CluSetJoinVersionIndClu> getCluVerIndIds() { 203 return cluVerIndIds; 204 } 205 206 public void setCluVerIndIds(List<CluSetJoinVersionIndClu> cluVerIndIds) { 207 this.cluVerIndIds = cluVerIndIds; 208 } 209 210}