Coverage Report - org.kuali.rice.kim.api.responsibility.ResponsibilityService
 
Classes in this File Line Coverage Branch Coverage Complexity
ResponsibilityService
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright 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.kim.api.responsibility;
 17  
 
 18  
 import org.kuali.rice.core.api.CoreConstants;
 19  
 import org.kuali.rice.core.api.criteria.QueryByCriteria;
 20  
 import org.kuali.rice.core.api.exception.RiceIllegalArgumentException;
 21  
 import org.kuali.rice.core.api.exception.RiceIllegalStateException;
 22  
 import org.kuali.rice.core.api.mo.common.Attributes;
 23  
 import org.kuali.rice.kim.api.common.template.Template;
 24  
 import org.kuali.rice.kim.api.common.template.TemplateQueryResults;
 25  
 
 26  
 import javax.jws.WebMethod;
 27  
 import javax.jws.WebParam;
 28  
 import javax.jws.WebResult;
 29  
 import javax.jws.WebService;
 30  
 import javax.jws.soap.SOAPBinding;
 31  
 import java.util.List;
 32  
 import java.util.Map;
 33  
 
 34  
 /**
 35  
  * This service provides operations for determining what responsibility actions
 36  
  * a principal has and for querying about responsibility data.  It also provides several
 37  
  * write operations.
 38  
  *
 39  
  * <p>
 40  
  * A responsibility represents an action that a principal is requested to
 41  
  * take.  This is used for defining workflow actions (such as approve,
 42  
  * acknowledge, fyi) that the principal has the responsibility to take.  The
 43  
  * workflow engine integrates with this service to provide
 44  
  * responsibility-driven routing.
 45  
  * <p/>
 46  
  * <p>
 47  
  * A responsibility is very similar to a permission in a couple of ways.
 48  
  * First of all, responsibilities are always granted to a role, never assigned
 49  
  * directly to a principal or group.  Furthermore, in a similar fashion to
 50  
  * permissions, a role has the concept of a responsibility template.  The
 51  
  * responsibility template specifies what additional responsibility details
 52  
  * need to be defined when the responsibility is created.
 53  
  * <p/>
 54  
  *
 55  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 56  
  */
 57  
 @WebService(name = "ResponsibilityServiceSoap", targetNamespace = CoreConstants.Namespaces.CORE_NAMESPACE_2_0)
 58  
 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
 59  
 public interface ResponsibilityService {
 60  
 
 61  
     /**
 62  
      * This will create a {@link Responsibility} exactly like the responsibility passed in.
 63  
      *
 64  
      * @param responsibility the responsibility to create
 65  
      * @return the id of the newly created object.  will never be null.
 66  
      * @throws IllegalArgumentException if the responsibility is null
 67  
      * @throws IllegalStateException if the responsibility is already existing in the system
 68  
      */
 69  
     @WebMethod(operationName="createResponsibility")
 70  
     @WebResult(name = "id")
 71  
     String createResponsibility(@WebParam(name = "responsibility") Responsibility responsibility)
 72  
             throws RiceIllegalArgumentException, RiceIllegalStateException;
 73  
 
 74  
     /**
 75  
      * This will update a {@link Responsibility}.
 76  
      *
 77  
      * @param responsibility the responsibility to update
 78  
      * @throws IllegalArgumentException if the responsibility is null
 79  
      * @throws IllegalStateException if the responsibility does not exist in the system
 80  
      */
 81  
     @WebMethod(operationName="updateResponsibility")
 82  
     void updateResponsibility(@WebParam(name = "responsibility") Responsibility responsibility)
 83  
             throws RiceIllegalArgumentException, RiceIllegalStateException;
 84  
 
 85  
 
 86  
     @WebMethod(operationName = "getResponsibility")
 87  
     @WebResult(name = "responsibility")
 88  
     Responsibility getResponsibility(@WebParam(name = "id") String id);
 89  
 
 90  
     @WebMethod(operationName = "findRespsByNamespaceCodeAndName")
 91  
     @WebResult(name = "responsibilities")
 92  
     List<Responsibility> findRespsByNamespaceCodeAndName(@WebParam(name = "namespaceCode") String namespaceCode,
 93  
                                                          @WebParam(name = "name") String name);
 94  
 
 95  
     @WebMethod(operationName = "getResponsibilityTemplate")
 96  
     @WebResult(name = "template")
 97  
     Template getResponsibilityTemplate(@WebParam(name = "id") String id);
 98  
 
 99  
     @WebMethod(operationName = "findRespTemplatesByNamespaceCodeAndName")
 100  
     @WebResult(name = "templates")
 101  
     List<Template> findRespTemplatesByNamespaceCodeAndName(@WebParam(name = "namespaceCode") String namespaceCode,
 102  
                                                            @WebParam(name = "name") String name);
 103  
 
 104  
     @WebMethod(operationName = "hasResponsibility")
 105  
     @WebResult(name = "result")
 106  
     boolean hasResponsibility(@WebParam(name = "principalId") String principalId,
 107  
                               @WebParam(name = "namespaceCode") String namespaceCode,
 108  
                               @WebParam(name = "respName") String respName,
 109  
                               @WebParam(name = "qualification") Attributes qualification,
 110  
                               @WebParam(name = "responsibilityDetails") Attributes responsibilityDetails);
 111  
 
 112  
     @WebMethod(operationName = "hasResponsibilityByTemplateName")
 113  
     @WebResult(name = "result")
 114  
     boolean hasResponsibilityByTemplateName(@WebParam(name = "principalId") String principalId,
 115  
                                             @WebParam(name = "namespaceCode") String namespaceCode,
 116  
                                             @WebParam(name = "respTemplateName") String respTemplateName,
 117  
                                             @WebParam(name = "qualification") Attributes qualification,
 118  
                                             @WebParam(name = "responsibilityDetails") Attributes responsibilityDetails);
 119  
 
 120  
     @WebMethod(operationName = "getResponsibilityActions")
 121  
     @WebResult(name = "responsibilityActions")
 122  
     List<ResponsibilityAction> getResponsibilityActions(@WebParam(name = "namespaceCode") String namespaceCode,
 123  
                                                         @WebParam(name = "responsibilityName") String responsibilityName,
 124  
                                                         @WebParam(name = "qualification") Attributes qualification,
 125  
                                                         @WebParam(name = "responsibilityDetails") Attributes responsibilityDetails);
 126  
 
 127  
     @WebMethod(operationName = "getResponsibilityActionsByTemplateName")
 128  
     @WebResult(name = "responsibilityActions")
 129  
     List<ResponsibilityAction> getResponsibilityActionsByTemplateName(@WebParam(name = "namespaceCode") String namespaceCode,
 130  
                                                                       @WebParam(name = "responsibilityTemplateName") String respTemplateName,
 131  
                                                                       @WebParam(name = "qualification") Attributes qualification,
 132  
                                                                       @WebParam(name = "responsibilityDetails") Attributes responsibilityDetails);
 133  
 
 134  
     @WebMethod(operationName = "getRoleIdsForResponsibility")
 135  
     @WebResult(name = "roleIds")
 136  
     List<String> getRoleIdsForResponsibility(@WebParam(name = "id") String id,
 137  
                                              @WebParam(name = "qualification") Attributes qualification);
 138  
 
 139  
     /**
 140  
      * This method find Responsibilities based on a query criteria.  The criteria cannot be null.
 141  
      *
 142  
      * @param queryByCriteria the criteria.  Cannot be null.
 143  
      * @return query results.  will never return null.
 144  
      * @throws IllegalArgumentException if the queryByCriteria is null
 145  
      */
 146  
     @WebMethod(operationName = "findResponsibilities")
 147  
     @WebResult(name = "results")
 148  
     ResponsibilityQueryResults findResponsibilities(@WebParam(name = "query") QueryByCriteria queryByCriteria);
 149  
 
 150  
 
 151  
     /**
 152  
      * This method find Responsibility Templates based on a query criteria.  The criteria cannot be null.
 153  
      *
 154  
      * @param queryByCriteria the criteria.  Cannot be null.
 155  
      * @return query results.  will never return null.
 156  
      * @throws IllegalArgumentException if the queryByCriteria is null
 157  
      */
 158  
     @WebMethod(operationName = "findResponsibilityTemplates")
 159  
     @WebResult(name = "results")
 160  
     TemplateQueryResults findResponsibilityTemplates(@WebParam(name = "query") QueryByCriteria queryByCriteria);
 161  
 }