Coverage Report - org.kuali.rice.kim.bo.ui.PersonDocumentRole
 
Classes in this File Line Coverage Branch Coverage Complexity
PersonDocumentRole
0%
0/65
0%
0/16
1.321
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kim.bo.ui;
 17  
 
 18  
 import org.apache.log4j.Logger;
 19  
 import org.hibernate.annotations.Fetch;
 20  
 import org.hibernate.annotations.FetchMode;
 21  
 import org.kuali.rice.kim.bo.impl.KimAttributes;
 22  
 import org.kuali.rice.kim.bo.impl.RoleImpl;
 23  
 import org.kuali.rice.kim.bo.role.impl.RoleResponsibilityImpl;
 24  
 import org.kuali.rice.kim.bo.types.dto.AttributeDefinitionMap;
 25  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 26  
 import org.kuali.rice.kim.service.KIMServiceLocatorInternal;
 27  
 import org.kuali.rice.kim.service.KIMServiceLocatorWeb;
 28  
 import org.kuali.rice.kim.service.support.KimTypeService;
 29  
 import org.kuali.rice.kns.datadictionary.AttributeDefinition;
 30  
 import org.springframework.util.AutoPopulatingList;
 31  
 
 32  
 import javax.persistence.*;
 33  
 import java.util.ArrayList;
 34  
 import java.util.HashMap;
 35  
 import java.util.List;
 36  
 import java.util.Map;
 37  
 
 38  
 /**
 39  
  * This is a description of what this class does - shyu don't forget to fill this in. 
 40  
  * 
 41  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 42  
  *
 43  
  */
 44  
 
 45  
 @Entity
 46  
 @IdClass(org.kuali.rice.kim.bo.ui.PersonDocumentRoleId.class)
 47  
 @Table(name="KRIM_PND_ROLE_MT",uniqueConstraints=@UniqueConstraint(columnNames={"FDOC_NBR", "ROLE_ID"}))
 48  
 public class PersonDocumentRole extends KimDocumentBoActivatableEditableBase {
 49  0
     private static final Logger LOG = Logger.getLogger(PersonDocumentRole.class);
 50  
         private static final long serialVersionUID = 4908044213007222739L;
 51  
         @Id
 52  
         @Column(name="ROLE_ID")
 53  
         protected String roleId;
 54  
         @Column(name="KIM_TYP_ID")
 55  
         protected String kimTypeId;
 56  
         @Column(name="ROLE_NM")
 57  
         protected String roleName;
 58  
         @Transient
 59  
         protected RoleImpl roleImpl;
 60  
         @Column(name="NMSPC_CD")
 61  
         protected String namespaceCode;
 62  
         @Transient
 63  
         protected KimTypeInfo kimRoleType;
 64  
         @Transient
 65  
         protected List<? extends KimAttributes> attributes;
 66  
         @Transient
 67  
         protected transient AttributeDefinitionMap definitions;
 68  
         @Transient
 69  
         protected transient Map<String,Object> attributeEntry;
 70  
         @OneToMany(fetch=FetchType.EAGER, cascade={CascadeType.ALL})
 71  
     @Fetch(value = FetchMode.SELECT)
 72  
         @JoinColumns({
 73  
                 @JoinColumn(name="ROLE_ID",insertable=false,updatable=false),
 74  
                 @JoinColumn(name="FDOC_NBR", insertable=false, updatable=false)
 75  
         })
 76  
         protected List<KimDocumentRoleMember> rolePrncpls;
 77  
         @Transient
 78  
     protected KimDocumentRoleMember newRolePrncpl;
 79  
         //currently mapped as manyToMany even though it is technically a OneToMany
 80  
         //The reason for this is it is linked with a partial Composite-id, which technically can't 
 81  
         //guarantee uniqueness.  
 82  0
         @ManyToMany(fetch=FetchType.EAGER, cascade={CascadeType.ALL})
 83  
     @Fetch(value = FetchMode.SELECT)
 84  
     @JoinColumn(name="ROLE_ID",insertable=false,updatable=false)
 85  
     //@JoinColumns({
 86  
         //        @JoinColumn(name="ROLE_ID",insertable=false,updatable=false),
 87  
         //        @JoinColumn(name="FDOC_NBR", insertable=false, updatable=false, table="KRIM_PERSON_DOCUMENT_T")
 88  
         //})
 89  
         protected List<RoleResponsibilityImpl> assignedResponsibilities = new AutoPopulatingList(RoleResponsibilityImpl.class);
 90  
 
 91  0
         @Transient
 92  
     protected boolean isEditable = true;
 93  
     
 94  0
         public PersonDocumentRole() {
 95  0
                 attributes = new ArrayList<KimAttributes>();        
 96  0
                 rolePrncpls = new ArrayList<KimDocumentRoleMember>();        
 97  0
                 attributeEntry = new HashMap<String,Object>();
 98  0
         }
 99  
         
 100  
         public String getRoleId() {
 101  0
                 return this.roleId;
 102  
         }
 103  
 
 104  
         public void setRoleId(String roleId) {
 105  0
                 this.roleId = roleId;
 106  0
         }
 107  
 
 108  
         public String getKimTypeId() {
 109  0
                 return this.kimTypeId;
 110  
         }
 111  
 
 112  
         public void setKimTypeId(String kimTypeId) {
 113  0
                 this.kimTypeId = kimTypeId;
 114  0
         }
 115  
 
 116  
         public String getRoleName() {
 117  0
                 return this.roleName;
 118  
         }
 119  
 
 120  
         public void setRoleName(String roleName) {
 121  0
                 this.roleName = roleName;
 122  0
         }
 123  
 
 124  
         public List<? extends KimAttributes> getAttributes() {
 125  0
                 return this.attributes;
 126  
         }
 127  
 
 128  
         public void setAttributes(List<? extends KimAttributes> attributes) {
 129  0
                 this.attributes = attributes;
 130  0
         }
 131  
 
 132  
         public KimTypeInfo getKimRoleType() {
 133  0
                 if ( kimRoleType == null ) {
 134  0
                         kimRoleType = KIMServiceLocatorWeb.getTypeInfoService().getKimType(kimTypeId);
 135  
                 }
 136  0
                 return kimRoleType;
 137  
         }
 138  
 
 139  
         @Deprecated // for testing only
 140  
         public void setKimRoleType(KimTypeInfo kimRoleType) {
 141  0
                 this.kimRoleType = kimRoleType;
 142  0
         }
 143  
 
 144  
         public AttributeDefinitionMap getDefinitionsKeyedByAttributeName() {
 145  0
                 AttributeDefinitionMap definitionsKeyedBySortCode = getDefinitions();
 146  0
                 AttributeDefinitionMap returnValue = new AttributeDefinitionMap();
 147  0
                 if (definitionsKeyedBySortCode != null) {
 148  0
                         for (AttributeDefinition definition : definitionsKeyedBySortCode.values()) {
 149  0
                                 returnValue.put(definition.getName(), definition);
 150  
                         }
 151  
                 }
 152  0
                 return returnValue;
 153  
         }
 154  
 
 155  
         public AttributeDefinitionMap getDefinitions() {
 156  0
                 if (definitions == null || definitions.isEmpty()) {
 157  0
                 KimTypeService kimTypeService = KIMServiceLocatorWeb.getKimTypeService(this.getKimRoleType());
 158  
                 //it is possible that the the roleTypeService is coming from a remote application 
 159  
                 // and therefore it can't be guarenteed that it is up and working, so using a try/catch to catch this possibility.
 160  
                 try {
 161  0
                     if ( kimTypeService != null ) {
 162  0
                             definitions = kimTypeService.getAttributeDefinitions(getKimTypeId());
 163  
                     } else {
 164  0
                             definitions = new AttributeDefinitionMap();
 165  
                     }
 166  0
                     } catch (Exception ex) {
 167  0
                 LOG.warn("Not able to retrieve KimTypeService from remote system for KIM Role Type: " + this.getKimRoleType(), ex);
 168  0
             }
 169  
                 }
 170  
                 
 171  0
                 return definitions;
 172  
         }
 173  
 
 174  
         public void setDefinitions(AttributeDefinitionMap definitions) {
 175  0
                 this.definitions = definitions;
 176  0
         }
 177  
 
 178  
         public Map<String,Object> getAttributeEntry() {
 179  0
                 if (attributeEntry == null || attributeEntry.isEmpty()) {
 180  0
                         attributeEntry = KIMServiceLocatorInternal.getUiDocumentService().getAttributeEntries(getDefinitions());
 181  
                 }
 182  
                 
 183  0
                 return this.attributeEntry;
 184  
         }
 185  
 
 186  
         public void setAttributeEntry(Map<String,Object> attributeEntry) {
 187  0
                 this.attributeEntry = attributeEntry;
 188  0
         }
 189  
 
 190  
         public List<KimDocumentRoleMember> getRolePrncpls() {
 191  0
                 return this.rolePrncpls;
 192  
         }
 193  
 
 194  
         public void setRolePrncpls(List<KimDocumentRoleMember> rolePrncpls) {
 195  0
                 this.rolePrncpls = rolePrncpls;
 196  0
         }
 197  
 
 198  
         public KimDocumentRoleMember getNewRolePrncpl() {
 199  0
                 return this.newRolePrncpl;
 200  
         }
 201  
 
 202  
         public void setNewRolePrncpl(KimDocumentRoleMember newRolePrncpl) {
 203  0
                 this.newRolePrncpl = newRolePrncpl;
 204  0
         }
 205  
 
 206  
         public String getNamespaceCode() {
 207  0
                 return this.namespaceCode;
 208  
         }
 209  
 
 210  
         public void setNamespaceCode(String namespaceCode) {
 211  0
                 this.namespaceCode = namespaceCode;
 212  0
         }
 213  
 
 214  
         public List<RoleResponsibilityImpl> getAssignedResponsibilities() {
 215  0
                 return this.assignedResponsibilities;
 216  
         }
 217  
 
 218  
         public void setAssignedResponsibilities(
 219  
                         List<RoleResponsibilityImpl> assignedResponsibilities) {
 220  0
                 this.assignedResponsibilities = assignedResponsibilities;
 221  0
         }
 222  
 
 223  
         /**
 224  
          * @return the roleImpl
 225  
          */
 226  
         public RoleImpl getRoleImpl() {
 227  0
                 return this.roleImpl;
 228  
         }
 229  
 
 230  
         /**
 231  
          * @param roleImpl the roleImpl to set
 232  
          */
 233  
         public void setRoleImpl(RoleImpl roleImpl) {
 234  0
                 this.roleImpl = roleImpl;
 235  0
         }
 236  
 
 237  
         /**
 238  
          * @return the isEditable
 239  
          */
 240  
         public boolean isEditable() {
 241  0
                 return this.isEditable;
 242  
         }
 243  
 
 244  
         /**
 245  
          * @param isEditable the isEditable to set
 246  
          */
 247  
         public void setEditable(boolean isEditable) {
 248  0
                 this.isEditable = isEditable;
 249  0
         }
 250  
 
 251  
 }