Coverage Report - org.kuali.rice.kew.doctype.bo.DocumentTypeEBO
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeEBO
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2009 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.bo;
 17  
 
 18  
 import org.kuali.rice.krad.bo.ExternalizableBusinessObject;
 19  
 
 20  
 /**
 21  
  * This is a description of what this class does - Garey don't forget to fill this in.
 22  
  *
 23  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 24  
  *
 25  
  */
 26  
 public interface DocumentTypeEBO extends ExternalizableBusinessObject{
 27  
 
 28  
         public String getDocTypeParentId();
 29  
 
 30  
         public String getDescription();
 31  
 
 32  
         /**
 33  
          * This method gets the help definition url from this object and resolves any
 34  
          * potential variables that may be in use
 35  
          */
 36  
         public String getHelpDefinitionUrl();
 37  
 
 38  
         public String getLabel();
 39  
 
 40  
         public String getName();
 41  
 
 42  
         public String getDocumentTypeId();
 43  
 
 44  
         /**
 45  
          * Returns the application id for this DocumentType which can be specified on the document type itself,
 46  
          * inherited from the parent, or defaults to the configured application id of the application.
 47  
          *
 48  
          * chb:12Nov2008: seems like the accessor should return the field and the auxiliary method "getActualFoo" should
 49  
          * be the one to do more elaborate checking
 50  
          */
 51  
         public String getApplicationId();
 52  
 
 53  
         /**
 54  
          * In order to make this object Inactivateable. Not sure if I
 55  
          * should remove the getActive method.
 56  
          *
 57  
          * @see org.kuali.rice.krad.bo.MutableInactivatable#isActive()
 58  
          */
 59  
         public boolean isActive();
 60  
 
 61  
 }