| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 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 | |
} |