Coverage Report - org.kuali.rice.kew.api.doctype.DocumentTypeContract
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeContract
N/A
N/A
1
 
 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.opensource.org/licenses/ecl1.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.api.doctype;
 17  
 
 18  
 import java.util.Map;
 19  
 
 20  
 import org.kuali.rice.core.api.mo.common.Identifiable;
 21  
 import org.kuali.rice.core.api.mo.common.Versioned;
 22  
 
 23  
 public interface DocumentTypeContract extends Identifiable, Versioned {
 24  
 
 25  
     String getName();
 26  
 
 27  
     Integer getDocumentTypeVersion();
 28  
 
 29  
     String getLabel();
 30  
 
 31  
     String getDescription();
 32  
 
 33  
     String getParentId();
 34  
 
 35  
     boolean isActive();
 36  
 
 37  
     String getDocHandlerUrl();
 38  
 
 39  
     String getHelpDefinitionUrl();
 40  
 
 41  
     String getDocSearchHelpUrl();
 42  
 
 43  
     String getPostProcessorName();
 44  
 
 45  
     String getApplicationId();
 46  
 
 47  
     boolean isCurrent();
 48  
 
 49  
     String getBlanketApproveGroupId();
 50  
 
 51  
     String getSuperUserGroupId();
 52  
 
 53  
     Map<DocumentTypePolicy, String> getPolicies();
 54  
 
 55  
 }