Coverage Report - org.kuali.rice.kns.service.impl.DocumentTypeAndAttachmentTypePermissionTypeService
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeAndAttachmentTypePermissionTypeService
0%
0/9
0%
0/8
6
 
 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.kns.service.impl;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.kim.bo.impl.KimAttributes;
 23  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 24  
 import org.kuali.rice.kim.bo.types.dto.AttributeSet;
 25  
 import org.kuali.rice.kns.util.KNSConstants;
 26  
 
 27  
 /**
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  */
 30  0
 public class DocumentTypeAndAttachmentTypePermissionTypeService extends
 31  
                 DocumentTypePermissionTypeServiceImpl {
 32  
 
 33  
         @Override
 34  
         public List<KimPermissionInfo> performPermissionMatches(
 35  
                         AttributeSet requestedDetails,
 36  
                         List<KimPermissionInfo> permissionsList) {
 37  
                 
 38  0
                 List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>();
 39  0
                 if (requestedDetails == null) {
 40  0
                         return matchingPermissions; // empty list
 41  
                 }
 42  
                 // loop over the permissions, checking the non-document-related ones
 43  0
                 for (KimPermissionInfo kimPermissionInfo : permissionsList) {
 44  0
                         if (!kimPermissionInfo.getDetails().containsKey(
 45  
                                                 KimAttributes.ATTACHMENT_TYPE_CODE)
 46  
                           || kimPermissionInfo.getDetails().get(KimAttributes.ATTACHMENT_TYPE_CODE)
 47  
                                  .equals(requestedDetails.get(KimAttributes.ATTACHMENT_TYPE_CODE)))                 
 48  
                         {
 49  0
                                 matchingPermissions.add(kimPermissionInfo);
 50  
                         }
 51  
 
 52  
                 }
 53  
                 // now, filter the list to just those for the current document
 54  0
                 matchingPermissions = super.performPermissionMatches(requestedDetails,
 55  
                                 matchingPermissions);
 56  0
                 return matchingPermissions;
 57  
         }
 58  
 }