Coverage Report - org.kuali.rice.kim.bo.impl.ResponsibilityImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
ResponsibilityImpl
0%
0/43
0%
0/2
1.038
 
 1  
 /*
 2  
  * Copyright 2007-2009 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.impl;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import javax.persistence.Transient;
 21  
 
 22  
 import org.apache.commons.lang.StringUtils;
 23  
 import org.kuali.rice.kim.bo.Person;
 24  
 import org.kuali.rice.kim.bo.role.impl.KimResponsibilityImpl;
 25  
 import org.kuali.rice.kim.util.KimConstants;
 26  
 import org.springframework.util.AutoPopulatingList;
 27  
 
 28  
 /**
 29  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 30  
  */
 31  0
 public class ResponsibilityImpl extends KimResponsibilityImpl {
 32  
 
 33  
         private static final long serialVersionUID = 1L;
 34  0
         @Transient
 35  
         List<RoleImpl> assignedToRoles = new AutoPopulatingList(RoleImpl.class);
 36  
         @Transient
 37  
         protected String assignedToRoleNamespaceForLookup;
 38  
         @Transient
 39  
         protected String assignedToRoleNameForLookup;
 40  
         @Transient
 41  
         protected RoleImpl assignedToRole;
 42  
         @Transient
 43  
         protected String assignedToPrincipalNameForLookup;
 44  
         @Transient
 45  
         protected Person assignedToPrincipal;
 46  
         @Transient
 47  
         protected String assignedToGroupNamespaceForLookup;
 48  
         @Transient
 49  
         protected String assignedToGroupNameForLookup;
 50  
         @Transient
 51  
         protected GroupImpl assignedToGroup;
 52  
         @Transient
 53  
         protected String attributeName;
 54  
         @Transient
 55  
         protected String attributeValue;
 56  
         @Transient
 57  
         protected String detailCriteria;
 58  
 
 59  
         
 60  
         /**
 61  
          * @return the assignedToRoles
 62  
          */
 63  
         public String getAssignedToRolesToDisplay() {
 64  0
                 StringBuffer assignedToRolesToDisplay = new StringBuffer();
 65  0
                 for(RoleImpl roleImpl: assignedToRoles){
 66  0
                         assignedToRolesToDisplay.append(getRoleDetailsToDisplay(roleImpl));
 67  
                 }
 68  0
                 return StringUtils.chomp( assignedToRolesToDisplay.toString(), KimConstants.KimUIConstants.COMMA_SEPARATOR);
 69  
         }
 70  
 
 71  
         public String getRoleDetailsToDisplay(RoleImpl roleImpl){
 72  0
                 return roleImpl.getNamespaceCode().trim()+" "+roleImpl.getRoleName().trim()+KimConstants.KimUIConstants.COMMA_SEPARATOR;
 73  
         }
 74  
         
 75  
         /**
 76  
          * @return the assignedToGroupNameForLookup
 77  
          */
 78  
         public String getAssignedToGroupNameForLookup() {
 79  0
                 return this.assignedToGroupNameForLookup;
 80  
         }
 81  
 
 82  
         /**
 83  
          * @param assignedToGroupNameForLookup the assignedToGroupNameForLookup to set
 84  
          */
 85  
         public void setAssignedToGroupNameForLookup(String assignedToGroupNameForLookup) {
 86  0
                 this.assignedToGroupNameForLookup = assignedToGroupNameForLookup;
 87  0
         }
 88  
 
 89  
         /**
 90  
          * @return the assignedToGroupNamespaceForLookup
 91  
          */
 92  
         public String getAssignedToGroupNamespaceForLookup() {
 93  0
                 return this.assignedToGroupNamespaceForLookup;
 94  
         }
 95  
 
 96  
         /**
 97  
          * @param assignedToGroupNamespaceForLookup the assignedToGroupNamespaceForLookup to set
 98  
          */
 99  
         public void setAssignedToGroupNamespaceForLookup(
 100  
                         String assignedToGroupNamespaceForLookup) {
 101  0
                 this.assignedToGroupNamespaceForLookup = assignedToGroupNamespaceForLookup;
 102  0
         }
 103  
 
 104  
         /**
 105  
          * @return the assignedToPrincipalNameForLookup
 106  
          */
 107  
         public String getAssignedToPrincipalNameForLookup() {
 108  0
                 return this.assignedToPrincipalNameForLookup;
 109  
         }
 110  
 
 111  
         /**
 112  
          * @param assignedToPrincipalNameForLookup the assignedToPrincipalNameForLookup to set
 113  
          */
 114  
         public void setAssignedToPrincipalNameForLookup(
 115  
                         String assignedToPrincipalNameForLookup) {
 116  0
                 this.assignedToPrincipalNameForLookup = assignedToPrincipalNameForLookup;
 117  0
         }
 118  
 
 119  
         /**
 120  
          * @return the assignedToRoleNameForLookup
 121  
          */
 122  
         public String getAssignedToRoleNameForLookup() {
 123  0
                 return this.assignedToRoleNameForLookup;
 124  
         }
 125  
 
 126  
         /**
 127  
          * @param assignedToRoleNameForLookup the assignedToRoleNameForLookup to set
 128  
          */
 129  
         public void setAssignedToRoleNameForLookup(String assignedToRoleNameForLookup) {
 130  0
                 this.assignedToRoleNameForLookup = assignedToRoleNameForLookup;
 131  0
         }
 132  
 
 133  
         /**
 134  
          * @return the assignedToRoleNamespaceForLookup
 135  
          */
 136  
         public String getAssignedToRoleNamespaceForLookup() {
 137  0
                 return this.assignedToRoleNamespaceForLookup;
 138  
         }
 139  
 
 140  
         /**
 141  
          * @param assignedToRoleNamespaceForLookup the assignedToRoleNamespaceForLookup to set
 142  
          */
 143  
         public void setAssignedToRoleNamespaceForLookup(
 144  
                         String assignedToRoleNamespaceForLookup) {
 145  0
                 this.assignedToRoleNamespaceForLookup = assignedToRoleNamespaceForLookup;
 146  0
         }
 147  
 
 148  
         /**
 149  
          * @return the attributeValue
 150  
          */
 151  
         public String getAttributeValue() {
 152  0
                 return this.attributeValue;
 153  
         }
 154  
 
 155  
         /**
 156  
          * @param attributeValue the attributeValue to set
 157  
          */
 158  
         public void setAttributeValue(String attributeValue) {
 159  0
                 this.attributeValue = attributeValue;
 160  0
         }
 161  
 
 162  
         /**
 163  
          * @return the assignedToRoles
 164  
          */
 165  
         public List<RoleImpl> getAssignedToRoles() {
 166  0
                 return this.assignedToRoles;
 167  
         }
 168  
 
 169  
         /**
 170  
          * @param assignedToRoles the assignedToRoles to set
 171  
          */
 172  
         public void setAssignedToRoles(List<RoleImpl> assignedToRoles) {
 173  0
                 this.assignedToRoles = assignedToRoles;
 174  0
         }
 175  
 
 176  
         /**
 177  
          * @return the assignedToGroup
 178  
          */
 179  
         public GroupImpl getAssignedToGroup() {
 180  0
                 return this.assignedToGroup;
 181  
         }
 182  
 
 183  
         /**
 184  
          * @param assignedToGroup the assignedToGroup to set
 185  
          */
 186  
         public void setAssignedToGroup(GroupImpl assignedToGroup) {
 187  0
                 this.assignedToGroup = assignedToGroup;
 188  0
         }
 189  
 
 190  
         /**
 191  
          * @return the assignedToPrincipal
 192  
          */
 193  
         public Person getAssignedToPrincipal() {
 194  0
                 return this.assignedToPrincipal;
 195  
         }
 196  
 
 197  
         /**
 198  
          * @param assignedToPrincipal the assignedToPrincipal to set
 199  
          */
 200  
         public void setAssignedToPrincipal(Person assignedToPrincipal) {
 201  0
                 this.assignedToPrincipal = assignedToPrincipal;
 202  0
         }
 203  
 
 204  
         /**
 205  
          * @return the assignedToRole
 206  
          */
 207  
         public RoleImpl getAssignedToRole() {
 208  0
                 return this.assignedToRole;
 209  
         }
 210  
 
 211  
         /**
 212  
          * @param assignedToRole the assignedToRole to set
 213  
          */
 214  
         public void setAssignedToRole(RoleImpl assignedToRole) {
 215  0
                 this.assignedToRole = assignedToRole;
 216  0
         }
 217  
 
 218  
         /**
 219  
          * @return the detailCriteria
 220  
          */
 221  
         public String getDetailCriteria() {
 222  0
                 return this.detailCriteria;
 223  
         }
 224  
 
 225  
         /**
 226  
          * @param detailCriteria the detailCriteria to set
 227  
          */
 228  
         public void setDetailCriteria(String detailCriteria) {
 229  0
                 this.detailCriteria = detailCriteria;
 230  0
         }
 231  
 
 232  
         /**
 233  
          * @return the attributeName
 234  
          */
 235  
         public String getAttributeName() {
 236  0
                 return this.attributeName;
 237  
         }
 238  
 
 239  
         /**
 240  
          * @param attributeName the attributeName to set
 241  
          */
 242  
         public void setAttributeName(String attributeName) {
 243  0
                 this.attributeName = attributeName;
 244  0
         }
 245  
 
 246  
 }