Coverage Report - org.kuali.rice.kim.impl.identity.externalId.EntityExternalIdentifierTypeBo
 
Classes in this File Line Coverage Branch Coverage Complexity
EntityExternalIdentifierTypeBo
0%
0/11
0%
0/4
0
 
 1  
 package org.kuali.rice.kim.impl.identity.externalId
 2  
 
 3  
 import javax.persistence.Column
 4  
 import javax.persistence.Entity
 5  
 import javax.persistence.Id
 6  
 import javax.persistence.Table
 7  
 import org.kuali.rice.kim.api.identity.Type
 8  
 import org.kuali.rice.kim.api.identity.TypeContract
 9  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase
 10  
 
 11  
 @Entity
 12  
 @Table(name="KRIM_EXT_ID_TYP_T")
 13  
 public class EntityExternalIdentifierTypeBo extends PersistableBusinessObjectBase implements TypeContract {
 14  
     @Id
 15  
     @Column(name="EXT_ID_TYP_CD")
 16  
     String code;
 17  
     @Column(name="NM")
 18  
     String name;
 19  
     @org.hibernate.annotations.Type(type="yes_no")
 20  
     @Column(name="ACTV_IND")
 21  
     boolean active;
 22  
     @Column(name="DISPLAY_SORT_CD")
 23  
     String sortCode;
 24  
 
 25  
     //TODO: need to create contract that includes this field
 26  
     @org.hibernate.annotations.Type(type="yes_no")
 27  
         @Column(name="ENCR_REQ_IND")
 28  
         protected boolean encryptionRequired;
 29  
 
 30  
 
 31  
     /**
 32  
    * Converts a mutable AddressTypeBo to an immutable AddressType representation.
 33  
    * @param bo
 34  
    * @return an immutable AddressType
 35  
    */
 36  
   static Type to(EntityExternalIdentifierTypeBo bo) {
 37  0
     if (bo == null) { return null }
 38  0
     return Type.Builder.create(bo).build()
 39  
   }
 40  
 
 41  
   /**
 42  
    * Creates a AddressType business object from an immutable representation of a AddressType.
 43  
    * @param an immutable AddressType
 44  
    * @return a AddressTypeBo
 45  
    */
 46  
   static EntityExternalIdentifierTypeBo from(Type immutable) {
 47  0
     if (immutable == null) {return null}
 48  
 
 49  0
     EntityExternalIdentifierTypeBo bo = new EntityExternalIdentifierTypeBo()
 50  0
     bo.code = immutable.code
 51  0
     bo.name = immutable.name
 52  0
     bo.sortCode = immutable.sortCode
 53  0
     bo.active = immutable.active
 54  0
     bo.versionNumber = immutable.versionNumber
 55  0
     bo.objectId = immutable.objectId
 56  
 
 57  0
     return bo;
 58  
   }
 59  
 }