Coverage Report - org.kuali.rice.kew.doctype.LazyLoadSecurityAttribute
 
Classes in this File Line Coverage Branch Coverage Complexity
LazyLoadSecurityAttribute
0%
0/8
N/A
1
 
 1  
 /*
 2  
  * Copyright 2010 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.kew.doctype;
 17  
 
 18  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 19  
 import org.kuali.rice.core.api.reflect.ObjectDefinition;
 20  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 21  
 import org.kuali.rice.kim.bo.Person;
 22  
 
 23  
 /**
 24  
  * This implementation of SecurityAttribute allows for us to lazy load the underlying
 25  
  * SecurityAttribute implementation from the service bus.  This is to address an issue
 26  
  * with DocumentType XML import where it was attempting to load the security attribute
 27  
  * class during ingestion which can cause problems if that application isn't online and
 28  
  * available. 
 29  
  * 
 30  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 31  
  *
 32  
  */
 33  
 public class LazyLoadSecurityAttribute implements SecurityAttribute {
 34  
 
 35  
         private static final long serialVersionUID = 8194757786570696656L;
 36  
 
 37  
         private String className;
 38  
         private String serviceNamespace;
 39  
         
 40  0
         public LazyLoadSecurityAttribute(String className, String serviceNamespace) {
 41  0
                 this.className = className;
 42  0
                 this.serviceNamespace = serviceNamespace;
 43  0
         }
 44  
 
 45  
         public Boolean docSearchAuthorized(Person currentUser, String docTypeName,
 46  
                         Long documentId, String initiatorPrincipalId) {
 47  0
                 return getSecurityAttribute().docSearchAuthorized(currentUser, docTypeName, documentId, initiatorPrincipalId);
 48  
         }
 49  
 
 50  
         public Boolean routeLogAuthorized(Person currentUser, String docTypeName,
 51  
                         Long documentId, String initiatorPrincipalId) {
 52  0
                 return getSecurityAttribute().routeLogAuthorized(currentUser, docTypeName, documentId, initiatorPrincipalId);
 53  
         }
 54  
         
 55  
         protected SecurityAttribute getSecurityAttribute() {
 56  0
                 ObjectDefinition objDef = new ObjectDefinition(className, serviceNamespace);
 57  0
                 return (SecurityAttribute)GlobalResourceLoader.getObject(objDef);
 58  
         }
 59  
 
 60  
 }