Coverage Report - org.kuali.rice.kim.service.impl.IdentityCurrentAndArchivedServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
IdentityCurrentAndArchivedServiceImpl
0%
0/43
0%
0/6
1.107
 
 1  
 /*
 2  
  * Copyright 2008-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.service.impl;
 17  
 
 18  
 import org.kuali.rice.kim.api.entity.Type;
 19  
 import org.kuali.rice.kim.api.entity.principal.Principal;
 20  
 import org.kuali.rice.kim.api.entity.privacy.EntityPrivacyPreferences;
 21  
 import org.kuali.rice.kim.api.entity.services.IdentityArchiveService;
 22  
 import org.kuali.rice.kim.api.entity.services.IdentityService;
 23  
 import org.kuali.rice.kim.bo.entity.dto.KimEntityDefaultInfo;
 24  
 import org.kuali.rice.kim.bo.entity.dto.KimEntityInfo;
 25  
 import org.kuali.rice.kim.bo.entity.dto.KimEntityNameInfo;
 26  
 import org.kuali.rice.kim.bo.entity.dto.KimEntityNamePrincipalNameInfo;
 27  
 import org.kuali.rice.kim.bo.reference.dto.AffiliationTypeInfo;
 28  
 import org.kuali.rice.kim.bo.reference.dto.EmploymentStatusInfo;
 29  
 import org.kuali.rice.kim.bo.reference.dto.EmploymentTypeInfo;
 30  
 import org.kuali.rice.kim.bo.reference.dto.EntityNameTypeInfo;
 31  
 import org.kuali.rice.kim.bo.reference.dto.ExternalIdentifierTypeInfo;
 32  
 import org.kuali.rice.kim.service.IdentityUpdateService;
 33  
 import org.kuali.rice.kim.util.KIMWebServiceConstants;
 34  
 
 35  
 import javax.jws.WebService;
 36  
 import java.util.List;
 37  
 import java.util.Map;
 38  
 
 39  
 /**
 40  
  * This IdentityService implementation is largely just a knee-jerk delegator, except for
 41  
  * getters returning {@link KimEntityDefaultInfo} in which case the IdentityArchiveService 
 42  
  * will be invoked if the inner IndentityService impl returns null.
 43  
  * 
 44  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 45  
  */
 46  
 
 47  
 @WebService(endpointInterface = KIMWebServiceConstants.IdentityService.INTERFACE_CLASS, serviceName = KIMWebServiceConstants.IdentityService.WEB_SERVICE_NAME, portName = KIMWebServiceConstants.IdentityService.WEB_SERVICE_PORT, targetNamespace = KIMWebServiceConstants.MODULE_TARGET_NAMESPACE)
 48  
 public class IdentityCurrentAndArchivedServiceImpl implements IdentityService, IdentityUpdateService {
 49  
 
 50  
         private final IdentityArchiveService identityArchiveService;
 51  
         private final IdentityService innerIdentityService;
 52  
         
 53  
         /**
 54  
          * This constructs a IdentityCurrentAndArchivedServiceImpl, injecting the
 55  
          * needed services.
 56  
          */
 57  
         public IdentityCurrentAndArchivedServiceImpl(IdentityService innerIdentityService, 
 58  0
                         IdentityArchiveService identityArchiveService) {
 59  0
                 this.innerIdentityService = innerIdentityService;
 60  0
                 this.identityArchiveService = identityArchiveService;
 61  0
         }
 62  
         
 63  
         /**
 64  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getAddressType(java.lang.String)
 65  
          */
 66  
         public Type getAddressType(String code) {
 67  0
                 return getInnerIdentityService().getAddressType(code);
 68  
         }
 69  
 
 70  
         /**
 71  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getAffiliationType(java.lang.String)
 72  
          */
 73  
         public AffiliationTypeInfo getAffiliationType(String code) {
 74  0
                 return getInnerIdentityService().getAffiliationType(code);
 75  
         }
 76  
 
 77  
         /**
 78  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getCitizenshipStatus(java.lang.String)
 79  
          */
 80  
         public Type getCitizenshipStatus(String code) {
 81  0
                 return Type.Builder.create(getInnerIdentityService().getCitizenshipStatus(code)).build();
 82  
         }
 83  
 
 84  
         /**
 85  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getDefaultNamesForEntityIds(java.util.List)
 86  
          */
 87  
         public Map<String, KimEntityNameInfo> getDefaultNamesForEntityIds(
 88  
                         List<String> entityIds) {
 89  0
                 return getInnerIdentityService().getDefaultNamesForEntityIds(entityIds);
 90  
         }
 91  
 
 92  
         /**
 93  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getDefaultNamesForPrincipalIds(java.util.List)
 94  
          */
 95  
         public Map<String, KimEntityNamePrincipalNameInfo> getDefaultNamesForPrincipalIds(
 96  
                         List<String> principalIds) {
 97  0
                 return getInnerIdentityService().getDefaultNamesForPrincipalIds(principalIds);
 98  
         }
 99  
 
 100  
         /**
 101  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEmailType(java.lang.String)
 102  
          */
 103  
         public Type getEmailType(String code) {
 104  0
                 return Type.Builder.create(getInnerIdentityService().getEmailType(code)).build();
 105  
         }
 106  
 
 107  
         /**
 108  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEmploymentStatus(java.lang.String)
 109  
          */
 110  
         public EmploymentStatusInfo getEmploymentStatus(String code) {
 111  0
                 return getInnerIdentityService().getEmploymentStatus(code);
 112  
         }
 113  
 
 114  
         /**
 115  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEmploymentType(java.lang.String)
 116  
          */
 117  
         public EmploymentTypeInfo getEmploymentType(String code) {
 118  0
                 return getInnerIdentityService().getEmploymentType(code);
 119  
         }
 120  
 
 121  
         /**
 122  
          * This method first tries the inner IdentityService impl, and resorts to
 123  
          * the IdentityArchiveService if need be.
 124  
          * 
 125  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityDefaultInfo(java.lang.String)
 126  
          */
 127  
         public KimEntityDefaultInfo getEntityDefaultInfo(String entityId) {
 128  0
                 KimEntityDefaultInfo entity = getInnerIdentityService().getEntityDefaultInfo(entityId);
 129  0
             if ( entity == null ) {
 130  0
                     entity = getIdentityArchiveService().getEntityDefaultInfoFromArchive( entityId );
 131  
             } else {
 132  0
                         getIdentityArchiveService().saveDefaultInfoToArchive(entity);
 133  
             }
 134  0
                 return entity;
 135  
         }
 136  
 
 137  
         /**
 138  
          * This method first tries the inner IdentityService impl, and resorts to
 139  
          * the IdentityArchiveService if need be.
 140  
          * 
 141  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityDefaultInfoByPrincipalId(java.lang.String)
 142  
          */
 143  
         public KimEntityDefaultInfo getEntityDefaultInfoByPrincipalId(
 144  
                         String principalId) {
 145  0
                 KimEntityDefaultInfo entity = getInnerIdentityService().getEntityDefaultInfoByPrincipalId(principalId);
 146  0
             if ( entity == null ) {
 147  0
                     entity = getIdentityArchiveService().getEntityDefaultInfoFromArchiveByPrincipalId( principalId );
 148  
             } else {
 149  0
                         getIdentityArchiveService().saveDefaultInfoToArchive(entity);
 150  
             }
 151  0
             return entity;
 152  
         }
 153  
 
 154  
         /**
 155  
          * This method first tries the inner IdentityService impl, and resorts to
 156  
          * the IdentityArchiveService if need be.
 157  
          * 
 158  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityDefaultInfoByPrincipalName(java.lang.String)
 159  
          */
 160  
         public KimEntityDefaultInfo getEntityDefaultInfoByPrincipalName(
 161  
                         String principalName) {
 162  0
                 KimEntityDefaultInfo entity = getInnerIdentityService().getEntityDefaultInfoByPrincipalName(principalName);
 163  0
             if ( entity == null ) {
 164  0
                     entity = getIdentityArchiveService().getEntityDefaultInfoFromArchiveByPrincipalName( principalName );
 165  
             } else {
 166  0
                         getIdentityArchiveService().saveDefaultInfoToArchive(entity);
 167  
             }
 168  0
             return entity;
 169  
         }
 170  
 
 171  
         /**
 172  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityInfo(java.lang.String)
 173  
          */
 174  
         public KimEntityInfo getEntityInfo(String entityId) {
 175  0
                 return getInnerIdentityService().getEntityInfo(entityId);
 176  
         }
 177  
 
 178  
         /**
 179  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityInfoByPrincipalId(java.lang.String)
 180  
          */
 181  
         public KimEntityInfo getEntityInfoByPrincipalId(String principalId) {
 182  0
                 return getInnerIdentityService().getEntityInfoByPrincipalId(principalId);
 183  
         }
 184  
 
 185  
         /**
 186  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityInfoByPrincipalName(java.lang.String)
 187  
          */
 188  
         public KimEntityInfo getEntityInfoByPrincipalName(String principalName) {
 189  0
                 return getInnerIdentityService().getEntityInfoByPrincipalName(principalName);
 190  
         }
 191  
 
 192  
         /**
 193  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityNameType(java.lang.String)
 194  
          */
 195  
         public EntityNameTypeInfo getEntityNameType(String code) {
 196  0
                 return getInnerIdentityService().getEntityNameType(code);
 197  
         }
 198  
 
 199  
         /**
 200  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityPrivacyPreferences(java.lang.String)
 201  
          */
 202  
         public EntityPrivacyPreferences getEntityPrivacyPreferences(
 203  
                         String entityId) {
 204  0
                 return getInnerIdentityService().getEntityPrivacyPreferences(entityId);
 205  
         }
 206  
 
 207  
         /**
 208  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getEntityType(java.lang.String)
 209  
          */
 210  
         public Type getEntityType(String code) {
 211  0
                 return Type.Builder.create(getInnerIdentityService().getEntityType(code)).build();
 212  
         }
 213  
 
 214  
         /**
 215  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getExternalIdentifierType(java.lang.String)
 216  
          */
 217  
         public ExternalIdentifierTypeInfo getExternalIdentifierType(String code) {
 218  0
                 return getInnerIdentityService().getExternalIdentifierType(code);
 219  
         }
 220  
 
 221  
         /**
 222  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getMatchingEntityCount(java.util.Map)
 223  
          */
 224  
         public int getMatchingEntityCount(Map<String, String> searchCriteria) {
 225  0
                 return getInnerIdentityService().getMatchingEntityCount(searchCriteria);
 226  
         }
 227  
 
 228  
         /**
 229  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getPhoneType(java.lang.String)
 230  
          */
 231  
         public Type getPhoneType(String code) {
 232  0
                 return Type.Builder.create(getInnerIdentityService().getPhoneType(code)).build();
 233  
         }
 234  
 
 235  
         /**
 236  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getPrincipal(java.lang.String)
 237  
          */
 238  
         public Principal getPrincipal(String principalId) {
 239  0
                 return getInnerIdentityService().getPrincipal(principalId);
 240  
         }
 241  
 
 242  
         /**
 243  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getPrincipalByPrincipalName(java.lang.String)
 244  
          */
 245  
         public Principal getPrincipalByPrincipalName(String principalName) {
 246  0
                 return getInnerIdentityService().getPrincipalByPrincipalName(principalName);
 247  
         }
 248  
 
 249  
         /**
 250  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#getPrincipalByPrincipalNameAndPassword(java.lang.String, java.lang.String)
 251  
          */
 252  
         public Principal getPrincipalByPrincipalNameAndPassword(
 253  
                         String principalName, String password) {
 254  0
                 return getInnerIdentityService().getPrincipalByPrincipalNameAndPassword(
 255  
                                 principalName, password);
 256  
         }
 257  
 
 258  
         /**
 259  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#lookupEntityDefaultInfo(java.util.Map, boolean)
 260  
          */
 261  
         public List<KimEntityDefaultInfo> lookupEntityDefaultInfo(
 262  
                         Map<String, String> searchCriteria, boolean unbounded) {
 263  0
                 return getInnerIdentityService().lookupEntityDefaultInfo(searchCriteria,
 264  
                                 unbounded);
 265  
         }
 266  
 
 267  
         /**
 268  
          * @see org.kuali.rice.kim.api.entity.services.IdentityService#lookupEntityInfo(java.util.Map, boolean)
 269  
          */
 270  
         public List<KimEntityInfo> lookupEntityInfo(
 271  
                         Map<String, String> searchCriteria, boolean unbounded) {
 272  0
                 return getInnerIdentityService().lookupEntityInfo(searchCriteria, unbounded);
 273  
         }
 274  
 
 275  
         private IdentityService getInnerIdentityService() {
 276  0
                 return innerIdentityService;
 277  
         }
 278  
         
 279  
         private IdentityArchiveService getIdentityArchiveService() {
 280  0
                 return identityArchiveService;
 281  
         }
 282  
 
 283  
 }