Coverage Report - org.kuali.student.enrollment.lpr.service.decorators.LuiPersonRelationServiceValidationDecorator
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiPersonRelationServiceValidationDecorator
0%
0/34
0%
0/14
2.444
 
 1  
 /*
 2  
  * Copyright 2011 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.osedu.org/licenses/ECL-2.0
 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.student.enrollment.lpr.service.decorators;
 17  
 
 18  
 
 19  
 import org.kuali.student.enrollment.lpr.dto.LuiPersonRelationInfo;
 20  
 import org.kuali.student.enrollment.lpr.service.LuiPersonRelationService;
 21  
 import org.kuali.student.enrollment.lpr.service.LuiPersonRelationServiceDecorator;
 22  
 import org.kuali.student.r2.common.dto.ContextInfo;
 23  
 import org.kuali.student.r2.common.dto.ValidationResultInfo;
 24  
 import org.kuali.student.r2.common.exceptions.AlreadyExistsException;
 25  
 import org.kuali.student.r2.common.exceptions.DataValidationErrorException;
 26  
 import org.kuali.student.r2.common.exceptions.DisabledIdentifierException;
 27  
 import org.kuali.student.r2.common.exceptions.DoesNotExistException;
 28  
 import org.kuali.student.r2.common.exceptions.InvalidParameterException;
 29  
 import org.kuali.student.r2.common.exceptions.MissingParameterException;
 30  
 import org.kuali.student.r2.common.exceptions.OperationFailedException;
 31  
 import org.kuali.student.r2.common.exceptions.PermissionDeniedException;
 32  
 import org.kuali.student.r2.common.exceptions.ReadOnlyException;
 33  
 import org.kuali.student.r2.common.exceptions.VersionMismatchException;
 34  
 
 35  
 import java.util.*;
 36  
 
 37  
 import org.kuali.student.common.infc.HoldsValidator;
 38  
 import org.kuali.student.datadictionary.DataDictionaryValidatorInfc;
 39  
 
 40  
 /**
 41  
  * An example Validation decorator for the {@link LuiPersonRelationService}. Additional validations are performed for the validateLuiPersonRelation, createLuiPersonRelation and updateLuiPersonRelation
 42  
  * methods here
 43  
  * 
 44  
  * @author sambit
 45  
  */
 46  0
 public class LuiPersonRelationServiceValidationDecorator extends LuiPersonRelationServiceDecorator implements HoldsValidator{
 47  
 
 48  
         private DataDictionaryValidatorInfc validator;
 49  
 
 50  
     @Override
 51  
     public DataDictionaryValidatorInfc getValidator() {
 52  0
         return validator;
 53  
     }
 54  
 
 55  
     @Override
 56  
     public void setValidator(DataDictionaryValidatorInfc validator) {
 57  0
         this.validator = validator;
 58  0
     }
 59  
 
 60  
     @Override
 61  
     public List<LuiPersonRelationInfo> findLuiPersonRelationsForLui(String luiId, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException {
 62  0
             return nextDecorator.findLuiPersonRelationsForLui(luiId, context);
 63  
     }
 64  
     @Override
 65  
     public List<String> createBulkRelationshipsForPerson(String personId, List<String> luiIdList, String relationState, String luiPersonRelationTypeKey, LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) throws DataValidationErrorException, AlreadyExistsException, DoesNotExistException, DisabledIdentifierException, ReadOnlyException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException {
 66  0
         return nextDecorator.createBulkRelationshipsForPerson(personId, luiIdList, relationState, luiPersonRelationTypeKey, luiPersonRelationInfo, context);
 67  
     }
 68  
 
 69  
         @Override
 70  
         public List<ValidationResultInfo> validateLuiPersonRelation(String validationType,
 71  
                         LuiPersonRelationInfo luiPersonRelationInfo,
 72  
                         ContextInfo context)
 73  
                         throws DoesNotExistException,
 74  
                         InvalidParameterException,
 75  
                         MissingParameterException,
 76  
                         OperationFailedException,
 77  
                         PermissionDeniedException {
 78  
                 
 79  0
             this.validator.validate(DataDictionaryValidatorInfc.ValidationType.fromString(validationType), luiPersonRelationInfo, context);
 80  
                 
 81  0
             return super.validateLuiPersonRelation(validationType, luiPersonRelationInfo, context);
 82  
                 
 83  
         }
 84  
 
 85  
         @Override
 86  
         public String createLuiPersonRelation(String personId, String luiId,
 87  
                         String luiPersonRelationType,
 88  
                         LuiPersonRelationInfo luiPersonRelationInfo,
 89  
                         ContextInfo context) throws
 90  
                         AlreadyExistsException,
 91  
                         DoesNotExistException,
 92  
                         DisabledIdentifierException,
 93  
                         InvalidParameterException,
 94  
                         MissingParameterException,
 95  
                         OperationFailedException,
 96  
                         DataValidationErrorException,
 97  
                         ReadOnlyException,
 98  
                         PermissionDeniedException {
 99  0
                 List<ValidationResultInfo> vris = this.validateLuiPersonRelation(DataDictionaryValidatorInfc.ValidationType.FULL_VALIDATION.name(),
 100  
                                 luiPersonRelationInfo, context);
 101  0
                 if (luiPersonRelationInfo.getId() != null) {
 102  0
                         throw new ReadOnlyException("Id is not allowed to be supplied on a create");
 103  
                 }
 104  0
                 if (luiPersonRelationInfo.getMetaInfo() != null) {
 105  0
                         throw new ReadOnlyException("MetaInfo is not allowed to be supplied on a create");
 106  
                 }
 107  0
                 if (!vris.isEmpty()) {
 108  0
                         throw new DataValidationErrorException("Failed validation", vris);
 109  
                 }
 110  0
                 return super.createLuiPersonRelation(personId, luiId, luiPersonRelationType, luiPersonRelationInfo, context);
 111  
         }
 112  
 
 113  
         @Override
 114  
         public LuiPersonRelationInfo updateLuiPersonRelation(String luiPersonRelationId,
 115  
                         LuiPersonRelationInfo luiPersonRelationInfo,
 116  
                         ContextInfo context)
 117  
         throws DataValidationErrorException,
 118  
         DoesNotExistException,
 119  
         InvalidParameterException,
 120  
         MissingParameterException,
 121  
         ReadOnlyException,
 122  
         OperationFailedException,
 123  
         PermissionDeniedException,
 124  
         VersionMismatchException {
 125  0
                 List<ValidationResultInfo> vris = this.validateLuiPersonRelation(DataDictionaryValidatorInfc.ValidationType.FULL_VALIDATION.name(),
 126  
                                 luiPersonRelationInfo, context);
 127  0
                 LuiPersonRelationInfo orig = this.fetchLuiPersonRelation(luiPersonRelationId, context);
 128  
                 
 129  0
                 checkReadOnly("id", orig.getId(), luiPersonRelationInfo.getId());
 130  0
                 checkReadOnly("type", orig.getTypeKey(), luiPersonRelationInfo.getTypeKey());
 131  0
                 checkReadOnly("createId", orig.getMetaInfo().getCreateId(), luiPersonRelationInfo.getMetaInfo().getCreateId());
 132  0
                 checkReadOnly("createTime", orig.getMetaInfo().getCreateTime(), luiPersonRelationInfo.getMetaInfo().getCreateTime());
 133  
                 
 134  0
                 if (orig.getMetaInfo().getVersionInd().equals(luiPersonRelationInfo.getMetaInfo().getVersionInd())) {
 135  0
                         checkReadOnly("updateId", orig.getMetaInfo().getUpdateId(), luiPersonRelationInfo.getMetaInfo().getUpdateId());
 136  0
                         checkReadOnly("updateTime", orig.getMetaInfo().getUpdateTime(), luiPersonRelationInfo.getMetaInfo().getUpdateTime());
 137  
                 }
 138  
 
 139  0
                 if (!vris.isEmpty()) {
 140  0
                         throw new DataValidationErrorException("Failed validation", vris);
 141  
                 }
 142  
                 
 143  0
                 return super.updateLuiPersonRelation(luiPersonRelationId, luiPersonRelationInfo, context);
 144  
         }
 145  
 
 146  
     private void checkReadOnly(String field, Object orig, Object supplied)
 147  
     throws ReadOnlyException {
 148  0
         checkReadOnly(field, orig, supplied, "" + orig, "" + supplied);
 149  0
     }
 150  
 
 151  
     private void checkReadOnly(String field, Object orig, Object supplied, String origStr, String suppliedStr)
 152  
     throws ReadOnlyException {
 153  0
         if (orig != null) {
 154  0
             if (orig.equals(supplied)) {
 155  0
                 return;
 156  
             }
 157  
         }
 158  0
         throw new ReadOnlyException(field + " is read only but the original value " + origStr + " and the supplied new=" + suppliedStr);
 159  
     }
 160  
 }
 161