1 | |
package org.kuali.student.enrollment.class1.hold.model; |
2 | |
|
3 | |
import java.util.ArrayList; |
4 | |
import java.util.List; |
5 | |
|
6 | |
import javax.persistence.CascadeType; |
7 | |
import javax.persistence.Column; |
8 | |
import javax.persistence.Entity; |
9 | |
import javax.persistence.JoinColumn; |
10 | |
import javax.persistence.ManyToOne; |
11 | |
import javax.persistence.OneToMany; |
12 | |
import javax.persistence.Table; |
13 | |
|
14 | |
|
15 | |
import org.kuali.student.r2.common.dto.AttributeInfo; |
16 | |
import org.kuali.student.r2.common.entity.AttributeOwner; |
17 | |
import org.kuali.student.r2.common.entity.MetaEntity; |
18 | |
import org.kuali.student.r2.common.infc.Attribute; |
19 | |
import org.kuali.student.r2.core.class1.state.model.StateEntity; |
20 | |
import org.kuali.student.r2.core.hold.dto.RestrictionInfo; |
21 | |
import org.kuali.student.r2.core.hold.infc.Restriction; |
22 | |
|
23 | |
@Entity |
24 | |
@Table(name = "KSEN_RESTRICTION") |
25 | |
public class RestrictionEntity extends MetaEntity implements AttributeOwner<RestrictionAttributeEntity>{ |
26 | |
@Column(name = "NAME") |
27 | |
private String name; |
28 | |
|
29 | |
@ManyToOne(cascade = CascadeType.ALL) |
30 | |
@JoinColumn(name = "RT_DESCR_ID") |
31 | |
private HoldRichTextEntity descr; |
32 | |
|
33 | |
@ManyToOne(optional=false) |
34 | |
@JoinColumn(name = "TYPE_ID") |
35 | |
private HoldTypeEntity restrictionType; |
36 | |
|
37 | |
@ManyToOne(optional=false) |
38 | |
@JoinColumn(name = "STATE_ID") |
39 | |
private StateEntity restrictionState; |
40 | |
|
41 | |
@OneToMany(cascade = CascadeType.ALL, mappedBy = "owner") |
42 | |
private List<RestrictionAttributeEntity> attributes; |
43 | |
|
44 | 0 | public RestrictionEntity(){} |
45 | |
|
46 | |
public RestrictionEntity(Restriction restriction){ |
47 | 0 | super(restriction); |
48 | |
try { |
49 | 0 | this.setId(restriction.getKey()); |
50 | 0 | this.setName(restriction.getName()); |
51 | |
|
52 | 0 | if(restriction.getDescr() != null) { |
53 | 0 | this.setDescr(new HoldRichTextEntity(restriction.getDescr())); |
54 | |
} |
55 | 0 | this.setAttributes(new ArrayList<RestrictionAttributeEntity>()); |
56 | 0 | if (null != restriction.getAttributes()) { |
57 | 0 | for (Attribute att : restriction.getAttributes()) { |
58 | 0 | RestrictionAttributeEntity attEntity = new RestrictionAttributeEntity(att); |
59 | 0 | this.getAttributes().add(attEntity); |
60 | 0 | } |
61 | |
} |
62 | 0 | } catch (Exception e){ |
63 | 0 | e.printStackTrace(); |
64 | 0 | } |
65 | 0 | } |
66 | |
|
67 | |
public RestrictionInfo toDto() { |
68 | 0 | RestrictionInfo obj = new RestrictionInfo(); |
69 | 0 | obj.setKey(getId()); |
70 | 0 | obj.setName(name); |
71 | 0 | if(restrictionType != null) |
72 | 0 | obj.setTypeKey(restrictionType.getId()); |
73 | 0 | if(restrictionState != null) |
74 | 0 | obj.setStateKey(restrictionState.getId()); |
75 | 0 | obj.setMeta(super.toDTO()); |
76 | 0 | if(descr != null) |
77 | 0 | obj.setDescr(descr.toDto()); |
78 | |
|
79 | 0 | List<AttributeInfo> atts = new ArrayList<AttributeInfo>(); |
80 | 0 | for (RestrictionAttributeEntity att : getAttributes()) { |
81 | 0 | AttributeInfo attInfo = att.toDto(); |
82 | 0 | atts.add(attInfo); |
83 | 0 | } |
84 | 0 | obj.setAttributes(atts); |
85 | |
|
86 | 0 | return obj; |
87 | |
} |
88 | |
|
89 | |
public HoldTypeEntity getRestrictionType() { |
90 | 0 | return restrictionType; |
91 | |
} |
92 | |
|
93 | |
public void setRestrictionType(HoldTypeEntity restrictionType) { |
94 | 0 | this.restrictionType = restrictionType; |
95 | 0 | } |
96 | |
|
97 | |
public String getName() { |
98 | 0 | return name; |
99 | |
} |
100 | |
|
101 | |
public void setName(String name) { |
102 | 0 | this.name = name; |
103 | 0 | } |
104 | |
|
105 | |
public HoldRichTextEntity getDescr() { |
106 | 0 | return descr; |
107 | |
} |
108 | |
|
109 | |
public void setDescr(HoldRichTextEntity descr) { |
110 | 0 | this.descr = descr; |
111 | 0 | } |
112 | |
|
113 | |
public StateEntity getRestrictionState() { |
114 | 0 | return restrictionState; |
115 | |
} |
116 | |
|
117 | |
public void setRestrictionState(StateEntity restrictionState) { |
118 | 0 | this.restrictionState = restrictionState; |
119 | 0 | } |
120 | |
|
121 | |
@Override |
122 | |
public void setAttributes(List<RestrictionAttributeEntity> attributes) { |
123 | 0 | this.attributes = attributes; |
124 | 0 | } |
125 | |
|
126 | |
@Override |
127 | |
public List<RestrictionAttributeEntity> getAttributes() { |
128 | 0 | return attributes; |
129 | |
} |
130 | |
|
131 | |
} |