Package com.jamasoftware.velocity.api
Interface RelationshipRuleSet
-
- All Superinterfaces:
DomainObjectBase
public interface RelationshipRuleSet extends DomainObjectBase
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Boolean
getIsExclusive()
java.lang.String
getName()
RelationshipRule
getRule(DocumentType fromDocType, DocumentType toDocType)
RelationshipRule
getRule(DocumentType fromDocType, DocumentType toDocType, RelationshipType relationshipType)
java.util.List<RelationshipRule>
getRules()
java.util.List<RelationshipRule>
getRules(DocumentType fromDocType, DocumentType toDocType)
java.lang.Boolean
hasRule(DocumentType docType)
-
Methods inherited from interface com.jamasoftware.velocity.api.DomainObjectBase
getId, getOrganizationId
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getIsExclusive
java.lang.Boolean getIsExclusive()
-
getRules
java.util.List<RelationshipRule> getRules()
-
getRule
RelationshipRule getRule(DocumentType fromDocType, DocumentType toDocType, RelationshipType relationshipType)
-
getRule
RelationshipRule getRule(DocumentType fromDocType, DocumentType toDocType)
-
getRules
java.util.List<RelationshipRule> getRules(DocumentType fromDocType, DocumentType toDocType)
-
hasRule
java.lang.Boolean hasRule(DocumentType docType)
-
-