Coverage Report - org.kuali.student.enrollment.class1.lui.model.LuiLuiRelationEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiLuiRelationEntity
0%
0/67
0%
0/12
1.25
 
 1  
 package org.kuali.student.enrollment.class1.lui.model;
 2  
 
 3  
 import java.util.ArrayList;
 4  
 import java.util.Date;
 5  
 import java.util.List;
 6  
 
 7  
 import javax.persistence.CascadeType;
 8  
 import javax.persistence.Column;
 9  
 import javax.persistence.Entity;
 10  
 import javax.persistence.JoinColumn;
 11  
 import javax.persistence.ManyToOne;
 12  
 import javax.persistence.OneToMany;
 13  
 import javax.persistence.Table;
 14  
 import javax.persistence.Temporal;
 15  
 import javax.persistence.TemporalType;
 16  
 
 17  
 import org.kuali.student.common.entity.KSEntityConstants;
 18  
 import org.kuali.student.enrollment.lui.dto.LuiLuiRelationInfo;
 19  
 import org.kuali.student.enrollment.lui.infc.LuiLuiRelation;
 20  
 import org.kuali.student.r2.common.dto.AttributeInfo;
 21  
 import org.kuali.student.r2.common.entity.MetaEntity;
 22  
 import org.kuali.student.r2.common.infc.Attribute;
 23  
 import org.kuali.student.r2.common.util.RichTextHelper;
 24  
 
 25  
 @Entity
 26  
 @Table(name = "KSEN_LUILUI_RELTN")
 27  
 public class LuiLuiRelationEntity extends MetaEntity {
 28  
 
 29  
     @Column(name = "NAME")
 30  
     private String name;
 31  
     @Column(name = "DESCR_FORMATTED", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH)
 32  
     private String formatted;
 33  
     @Column(name = "DESCR_PLAIN", length = KSEntityConstants.EXTRA_LONG_TEXT_LENGTH)
 34  
     private String plain;
 35  
     @ManyToOne
 36  
     @JoinColumn(name = "LUI_ID")
 37  
     private LuiEntity lui;
 38  
     @ManyToOne
 39  
     @JoinColumn(name = "RELATED_LUI_ID")
 40  
     private LuiEntity relatedLui;
 41  
     @Column(name = "LUILUI_RELTN_TYPE")
 42  
     private String luiLuiRelationType;
 43  
     @Column(name = "LUILUI_RELTN_STATE")
 44  
     private String luiLuiRelationState;
 45  
     @Temporal(TemporalType.TIMESTAMP)
 46  
     @Column(name = "EFF_DT")
 47  
     private Date effectiveDate;
 48  
     @Temporal(TemporalType.TIMESTAMP)
 49  
     @Column(name = "EXPIR_DT")
 50  
     private Date expirationDate;
 51  
     @OneToMany(cascade = CascadeType.ALL, mappedBy = "owner")
 52  
     private List<LuiLuiRelationAttributeEntity> attributes;
 53  
 
 54  0
     public LuiLuiRelationEntity() {
 55  0
     }
 56  
 
 57  0
     public LuiLuiRelationEntity(LuiLuiRelation luiLuiRelation) {
 58  0
         this.setId(luiLuiRelation.getId());
 59  0
         this.setLuiLuiRelationType(luiLuiRelation.getTypeKey());
 60  0
         fromDto(luiLuiRelation);
 61  0
     }
 62  
 
 63  
     public void fromDto(LuiLuiRelation luiLuiRelation) {
 64  0
         this.setEffectiveDate(luiLuiRelation.getEffectiveDate());
 65  0
         this.setExpirationDate(luiLuiRelation.getExpirationDate());
 66  0
         this.setLuiLuiRelationState(luiLuiRelation.getStateKey());
 67  0
         if (luiLuiRelation.getDescr() == null) {
 68  0
             this.setDescrFormatted(null);
 69  0
             this.setDescrPlain(null);
 70  
         } else {
 71  0
             this.setDescrFormatted(luiLuiRelation.getDescr().getFormatted());
 72  0
             this.setDescrPlain(luiLuiRelation.getDescr().getPlain());
 73  
         }
 74  0
         this.setAttributes(new ArrayList<LuiLuiRelationAttributeEntity>());
 75  0
         for (Attribute att : luiLuiRelation.getAttributes()) {
 76  0
             this.getAttributes().add(new LuiLuiRelationAttributeEntity(att));
 77  
         }
 78  0
     }
 79  
 
 80  
     public LuiLuiRelationInfo toDto() {
 81  0
         LuiLuiRelationInfo info = new LuiLuiRelationInfo();
 82  0
         info.setId(getId());
 83  0
         if (lui != null) {
 84  0
             info.setLuiId(lui.getId());
 85  
         }
 86  0
         if (relatedLui != null) {
 87  0
             info.setRelatedLuiId(relatedLui.getId());
 88  
         }
 89  0
         info.setEffectiveDate(effectiveDate);
 90  0
         info.setExpirationDate(expirationDate);
 91  0
         info.setStateKey(luiLuiRelationState);
 92  0
         info.setTypeKey(luiLuiRelationType);
 93  0
         info.setMeta(super.toDTO());
 94  0
         info.setDescr(new RichTextHelper().toRichTextInfo(plain, formatted));
 95  0
         if (getAttributes() != null) {
 96  0
             for (LuiLuiRelationAttributeEntity att : getAttributes()) {
 97  0
                 AttributeInfo attInfo = att.toDto();
 98  0
                 info.getAttributes().add(attInfo);
 99  0
             }
 100  
         }
 101  0
         return info;
 102  
     }
 103  
 
 104  
     public String getName() {
 105  0
         return name;
 106  
     }
 107  
 
 108  
     public void setName(String name) {
 109  0
         this.name = name;
 110  0
     }
 111  
 
 112  
     public String getDescrFormatted() {
 113  0
         return formatted;
 114  
     }
 115  
 
 116  
     public void setDescrFormatted(String formatted) {
 117  0
         this.formatted = formatted;
 118  0
     }
 119  
 
 120  
     public String getDescrPlain() {
 121  0
         return plain;
 122  
     }
 123  
 
 124  
     public void setDescrPlain(String plain) {
 125  0
         this.plain = plain;
 126  0
     }
 127  
 
 128  
     public LuiEntity getLui() {
 129  0
         return lui;
 130  
     }
 131  
 
 132  
     public void setLui(LuiEntity lui) {
 133  0
         this.lui = lui;
 134  0
     }
 135  
 
 136  
     public LuiEntity getRelatedLui() {
 137  0
         return relatedLui;
 138  
     }
 139  
 
 140  
     public void setRelatedLui(LuiEntity relatedLui) {
 141  0
         this.relatedLui = relatedLui;
 142  0
     }
 143  
 
 144  
     public String getLuiLuiRelationType() {
 145  0
         return luiLuiRelationType;
 146  
     }
 147  
 
 148  
     public void setLuiLuiRelationType(String luiLuiRelationType) {
 149  0
         this.luiLuiRelationType = luiLuiRelationType;
 150  0
     }
 151  
 
 152  
     public String getLuiLuiRelationState() {
 153  0
         return luiLuiRelationState;
 154  
     }
 155  
 
 156  
     public void setLuiLuiRelationState(String luiLuiRelationState) {
 157  0
         this.luiLuiRelationState = luiLuiRelationState;
 158  0
     }
 159  
 
 160  
     public Date getEffectiveDate() {
 161  0
         return effectiveDate;
 162  
     }
 163  
 
 164  
     public void setEffectiveDate(Date effectiveDate) {
 165  0
         this.effectiveDate = effectiveDate;
 166  0
     }
 167  
 
 168  
     public Date getExpirationDate() {
 169  0
         return expirationDate;
 170  
     }
 171  
 
 172  
     public void setExpirationDate(Date expirationDate) {
 173  0
         this.expirationDate = expirationDate;
 174  0
     }
 175  
 
 176  
     public void setAttributes(List<LuiLuiRelationAttributeEntity> attributes) {
 177  0
         this.attributes = attributes;
 178  
 
 179  0
     }
 180  
 
 181  
     public List<LuiLuiRelationAttributeEntity> getAttributes() {
 182  0
         return attributes;
 183  
     }
 184  
 }