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.kuali.rice.core.util.AttributeSet;
 22  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 23  
 import org.kuali.rice.kim.util.KimConstants;
 24  
 
 25  
 /**
 26  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 27  
  */
 28  0
 public class DocumentTypeAndAttachmentTypePermissionTypeService extends
 29  
                 DocumentTypePermissionTypeServiceImpl {
 30  
 
 31  
         @Override
 32  
         public List<KimPermissionInfo> performPermissionMatches(
 33  
                         AttributeSet requestedDetails,
 34  
                         List<KimPermissionInfo> permissionsList) {
 35  
                 
 36  0
                 List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>();
 37  0
                 if (requestedDetails == null) {
 38  0
                         return matchingPermissions; // empty list
 39  
                 }
 40  
                 // loop over the permissions, checking the non-document-related ones
 41  0
                 for (KimPermissionInfo kimPermissionInfo : permissionsList) {
 42  0
                         if (!kimPermissionInfo.getDetails().containsKey(
 43  
                                                 KimConstants.AttributeConstants.ATTACHMENT_TYPE_CODE)
 44  
                           || kimPermissionInfo.getDetails().get(KimConstants.AttributeConstants.ATTACHMENT_TYPE_CODE)
 45  
                                  .equals(requestedDetails.get(KimConstants.AttributeConstants.ATTACHMENT_TYPE_CODE)))
 46  
                         {
 47  0
                                 matchingPermissions.add(kimPermissionInfo);
 48  
                         }
 49  
 
 50  
                 }
 51  
                 // now, filter the list to just those for the current document
 52  0
                 matchingPermissions = super.performPermissionMatches(requestedDetails,
 53  
                                 matchingPermissions);
 54  0
                 return matchingPermissions;
 55  
         }
 56  
 }