Coverage Report - org.kuali.student.r2.core.process.model.InstructionEntity
 
Classes in this File Line Coverage Branch Coverage Complexity
InstructionEntity
0%
0/100
0%
0/34
1.548
 
 1  
 package org.kuali.student.r2.core.process.model;
 2  
 
 3  
 
 4  
 import java.util.ArrayList;
 5  
 import java.util.Date;
 6  
 import java.util.List;
 7  
 
 8  
 import javax.persistence.CascadeType;
 9  
 import javax.persistence.Column;
 10  
 import javax.persistence.Entity;
 11  
 import javax.persistence.JoinColumn;
 12  
 import javax.persistence.JoinTable;
 13  
 import javax.persistence.ManyToMany;
 14  
 import javax.persistence.ManyToOne;
 15  
 import javax.persistence.OneToMany;
 16  
 import javax.persistence.Table;
 17  
 import javax.persistence.Temporal;
 18  
 import javax.persistence.TemporalType;
 19  
 
 20  
 import org.kuali.student.r2.common.dto.AttributeInfo;
 21  
 import org.kuali.student.r2.common.entity.AttributeOwner;
 22  
 import org.kuali.student.r2.common.entity.MetaEntity;
 23  
 import org.kuali.student.r2.common.infc.Attribute;
 24  
 import org.kuali.student.r2.core.class1.state.model.StateEntity;
 25  
 import org.kuali.student.r2.core.population.model.PopulationEntity;
 26  
 import org.kuali.student.r2.core.process.dto.InstructionInfo;
 27  
 import org.kuali.student.r2.core.process.infc.Instruction;
 28  
 
 29  
 @Entity
 30  
 @Table(name = "KSEN_INSTR")
 31  
 public class InstructionEntity extends MetaEntity implements AttributeOwner<InstructionAttributeEntity> {
 32  
 
 33  
     @Temporal(TemporalType.TIMESTAMP)
 34  
     @Column(name = "EFF_DT")
 35  
     private Date effectiveDate;
 36  
 
 37  
     @Temporal(TemporalType.TIMESTAMP)
 38  
     @Column(name = "EXPIR_DT")
 39  
     private Date expirationDate;
 40  
 
 41  
     @ManyToOne(optional = false)
 42  
     @JoinColumn(name = "TYPE_ID")
 43  
     private InstructionTypeEntity instructionType;
 44  
 
 45  
     @ManyToOne(optional = false)
 46  
     @JoinColumn(name = "STATE_ID")
 47  
     private StateEntity instructionState;
 48  
 
 49  
     @ManyToOne(optional = false)
 50  
     @JoinColumn(name = "PROCESS_ID")
 51  
     private ProcessEntity process;
 52  
 
 53  
     @ManyToOne(optional = false)
 54  
     @JoinColumn(name = "CHECK_ID")
 55  
     private CheckEntity check;
 56  
 
 57  
     @ManyToOne(cascade = CascadeType.ALL)
 58  
     @JoinColumn(name = "MESSAGE")
 59  
     private InstructionMessageEntity message;
 60  
 
 61  
     @Column(name = "POSITION")
 62  
     private int position;
 63  
 
 64  
     @Column(name = "IS_WARNING")
 65  
     private boolean warning;
 66  
 
 67  
     @Column(name = "CONTINUE_ON_FAIL")
 68  
     private boolean continueOnFail;
 69  
 
 70  
     @Column(name = "IS_EXEMPTABLE")
 71  
     private boolean exemptable;
 72  
 
 73  
     @ManyToMany(cascade = CascadeType.ALL)
 74  
     @JoinTable(name = "KSEN_INSTR_POPLTN_RELTN", joinColumns = @JoinColumn(name = "INSTR_ID"), inverseJoinColumns = @JoinColumn(name = "POPLTN_ID"))
 75  
     private List<PopulationEntity> appliedPopulation;
 76  
 
 77  
     private transient List<String> appliedAtpTypes;
 78  
 
 79  0
     @OneToMany(cascade = CascadeType.ALL, mappedBy = "owner",orphanRemoval = true)
 80  
     private List<InstructionAttributeEntity> attributes = new ArrayList<InstructionAttributeEntity>();
 81  
 
 82  
 
 83  0
     public InstructionEntity() {
 84  0
     }
 85  
 
 86  
     public InstructionEntity(Instruction dto) {
 87  0
         super(dto);
 88  
 
 89  0
         setId(dto.getId());
 90  0
         setContinueOnFail(dto.getContinueOnFail());
 91  0
         setExemptable(dto.getIsExemptable());
 92  0
         setPosition(dto.getPosition());
 93  0
         setWarning(dto.getIsWarning());
 94  
 
 95  0
         if (dto.getExpirationDate() != null){
 96  0
             setExpirationDate(dto.getExpirationDate());
 97  
         }
 98  
 
 99  0
         if (dto.getEffectiveDate() != null){
 100  0
             setEffectiveDate(dto.getEffectiveDate());
 101  
         }
 102  
 
 103  0
         if (dto.getMessage() != null) {
 104  0
             this.setMessage(new InstructionMessageEntity(dto.getMessage()));
 105  
         }
 106  0
         this.setAttributes(new ArrayList<InstructionAttributeEntity>());
 107  0
         if (null != dto.getAttributes()) {
 108  0
             for (Attribute att : dto.getAttributes()) {
 109  0
                 this.getAttributes().add(new InstructionAttributeEntity(att, this));
 110  
             }
 111  
         }
 112  
 
 113  0
     }
 114  
 
 115  
     public InstructionInfo toDto() {
 116  
 
 117  0
         InstructionInfo dto = new InstructionInfo();
 118  
 
 119  0
         dto.setId(getId());
 120  0
         dto.setContinueOnFail(isContinueOnFail());
 121  0
         dto.setPosition(getPosition());
 122  0
         dto.setIsExemptable(isExemptable());
 123  0
         dto.setIsWarning(isWarning());
 124  
 
 125  0
         if (getEffectiveDate() != null){
 126  0
             dto.setEffectiveDate(getEffectiveDate());
 127  
         }
 128  
 
 129  0
         if (getExpirationDate() != null){
 130  0
             dto.setExpirationDate(getExpirationDate());
 131  
         }
 132  
 
 133  0
         if (getInstructionState() != null){
 134  0
             dto.setStateKey(getInstructionState().getId());
 135  
         }
 136  
 
 137  0
         if (getProcess() != null){
 138  0
             dto.setProcessKey(getProcess().getId());
 139  
         }
 140  
 
 141  0
         if (getCheck() != null){
 142  0
             dto.setCheckKey(getCheck().getId());
 143  
         }
 144  
 
 145  0
         if (getInstructionType() != null){
 146  0
             dto.setTypeKey(getInstructionType().getId());
 147  
         }
 148  
 
 149  0
         List<String> appliedPopulation = new ArrayList<String>();
 150  0
         if (getAppliedPopulation() != null){
 151  0
             for (PopulationEntity population : getAppliedPopulation()) {
 152  0
                 appliedPopulation.add(population.getId());
 153  
             }
 154  
         }
 155  0
         dto.setAppliedPopulationKeys(appliedPopulation);
 156  
 
 157  0
         List<String> appliedAtpTypeKeys = new ArrayList<String>();
 158  0
         if (getAppliedAtpTypes() != null){
 159  0
             for (String atpType : getAppliedAtpTypes()) {
 160  0
                 appliedAtpTypeKeys.add(atpType);
 161  
             }
 162  
         }
 163  0
         dto.setAppliedAtpTypeKeys(appliedAtpTypeKeys);
 164  
 
 165  0
         dto.setMeta(super.toDTO());
 166  0
         if (getMessage() != null){
 167  0
             dto.setMessage(message.toDto());
 168  
         }
 169  
 
 170  0
         List<AttributeInfo> atts = new ArrayList<AttributeInfo>();
 171  0
         for (InstructionAttributeEntity att : getAttributes()) {
 172  0
             AttributeInfo attInfo = att.toDto();
 173  0
             atts.add(attInfo);
 174  0
         }
 175  0
         dto.setAttributes(atts);
 176  
 
 177  0
         return dto;
 178  
     }
 179  
 
 180  
     public Date getEffectiveDate() {
 181  0
         return effectiveDate;
 182  
     }
 183  
 
 184  
     public void setEffectiveDate(Date effectiveDate) {
 185  0
         this.effectiveDate = effectiveDate;
 186  0
     }
 187  
 
 188  
     public Date getExpirationDate() {
 189  0
         return expirationDate;
 190  
     }
 191  
 
 192  
     public void setExpirationDate(Date expirationDate) {
 193  0
         this.expirationDate = expirationDate;
 194  0
     }
 195  
 
 196  
     public InstructionTypeEntity getInstructionType() {
 197  0
         return instructionType;
 198  
     }
 199  
 
 200  
     public void setInstructionType(InstructionTypeEntity instructionType) {
 201  0
         this.instructionType = instructionType;
 202  0
     }
 203  
 
 204  
     public StateEntity getInstructionState() {
 205  0
         return instructionState;
 206  
     }
 207  
 
 208  
     public void setInstructionState(StateEntity instructionState) {
 209  0
         this.instructionState = instructionState;
 210  0
     }
 211  
 
 212  
     public ProcessEntity getProcess() {
 213  0
         return process;
 214  
     }
 215  
 
 216  
     public void setProcess(ProcessEntity process) {
 217  0
         this.process = process;
 218  0
     }
 219  
 
 220  
     public CheckEntity getCheck() {
 221  0
         return check;
 222  
     }
 223  
 
 224  
     public void setCheck(CheckEntity check) {
 225  0
         this.check = check;
 226  0
     }
 227  
 
 228  
     public InstructionMessageEntity getMessage() {
 229  0
         return message;
 230  
     }
 231  
 
 232  
     public void setMessage(InstructionMessageEntity message) {
 233  0
         this.message = message;
 234  0
     }
 235  
 
 236  
     public int getPosition() {
 237  0
         return position;
 238  
     }
 239  
 
 240  
     public void setPosition(int position) {
 241  0
         this.position = position;
 242  0
     }
 243  
 
 244  
     public boolean isWarning() {
 245  0
         return warning;
 246  
     }
 247  
 
 248  
     public void setWarning(boolean warning) {
 249  0
         this.warning = warning;
 250  0
     }
 251  
 
 252  
     public boolean isContinueOnFail() {
 253  0
         return continueOnFail;
 254  
     }
 255  
 
 256  
     public void setContinueOnFail(boolean continueOnFail) {
 257  0
         this.continueOnFail = continueOnFail;
 258  0
     }
 259  
 
 260  
     public boolean isExemptable() {
 261  0
         return exemptable;
 262  
     }
 263  
 
 264  
     public void setExemptable(boolean exemptable) {
 265  0
         this.exemptable = exemptable;
 266  0
     }
 267  
 
 268  
     public List<PopulationEntity> getAppliedPopulation() {
 269  0
         return appliedPopulation;
 270  
     }
 271  
 
 272  
     public void setAppliedPopulation(List<PopulationEntity> appliedPopulation) {
 273  0
         this.appliedPopulation = appliedPopulation;
 274  0
     }
 275  
 
 276  
     public List<String> getAppliedAtpTypes() {
 277  0
         return appliedAtpTypes;
 278  
     }
 279  
 
 280  
     public void setAppliedAtpTypes(List<String> appliedAtpTypes) {
 281  0
         this.appliedAtpTypes = appliedAtpTypes;
 282  0
     }
 283  
 
 284  
     @Override
 285  
     public void setAttributes(List<InstructionAttributeEntity> attributes) {
 286  0
         this.attributes = attributes;
 287  0
     }
 288  
 
 289  
     @Override
 290  
     public List<InstructionAttributeEntity> getAttributes() {
 291  0
         return attributes;
 292  
     }
 293  
 }