public interface TypeTypeRelationBoService
TypeTypeRelationBo related business objects.| Modifier and Type | Method and Description |
|---|---|
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation |
createTypeTypeRelation(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
This will create a
TypeTypeRelation exactly like the parameter passed in. |
void |
deleteTypeTypeRelation(String typeTypeRelationId)
Delete the
TypeTypeRelation with the given id. |
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> |
findTypeTypeRelationsByFromType(String fromTypeId) |
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> |
findTypeTypeRelationsByRelationshipType(org.kuali.rice.krms.api.repository.typerelation.RelationshipType relationshipType) |
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> |
findTypeTypeRelationsBySequenceNumber(Integer sequenceNumber) |
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> |
findTypeTypeRelationsByToType(String toTypeId) |
TypeTypeRelationBo |
from(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
Converts a immutable
TypeTypeRelation to its mutable TypeTypeRelationBo counterpart. |
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation |
getTypeTypeRelation(String typeTypeRelationId)
Retrieves a TypeTypeRelation from the repository based on the given id.
|
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation |
to(TypeTypeRelationBo typeTypeRelationBo)
Converts a mutable
TypeTypeRelationBo to its immutable counterpart, TypeTypeRelation. |
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation |
updateTypeTypeRelation(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
This will update an existing
TypeTypeRelation. |
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation createTypeTypeRelation(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
TypeTypeRelation exactly like the parameter passed in.typeTypeRelation - The TypeTypeRelation to create.TypeTypeRelation exactly like the parameter passed in.IllegalArgumentException - if the TypeTypeRelation is null.IllegalStateException - if the TypeTypeRelation already exists in the system.org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation getTypeTypeRelation(String typeTypeRelationId)
typeTypeRelationId - to retrieve.TypeTypeRelation identified by the given id.
A null reference is returned if an invalid or non-existent id is supplied.org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation updateTypeTypeRelation(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
TypeTypeRelation.typeTypeRelation - The TypeTypeRelation to update.IllegalArgumentException - if the TypeTypeRelation is null.IllegalStateException - if the TypeTypeRelation does not exists in the system.void deleteTypeTypeRelation(String typeTypeRelationId)
TypeTypeRelation with the given id.typeTypeRelationId - to delete.IllegalArgumentException - if the TypeTypeRelation is null.IllegalStateException - if the TypeTypeRelation does not exists in the systemList<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> findTypeTypeRelationsByFromType(String fromTypeId)
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> findTypeTypeRelationsByToType(String toTypeId)
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> findTypeTypeRelationsByRelationshipType(org.kuali.rice.krms.api.repository.typerelation.RelationshipType relationshipType)
List<org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation> findTypeTypeRelationsBySequenceNumber(Integer sequenceNumber)
org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation to(TypeTypeRelationBo typeTypeRelationBo)
TypeTypeRelationBo to its immutable counterpart, TypeTypeRelation.typeTypeRelationBo - the mutable business object.TypeTypeRelation the immutable object.TypeTypeRelationBo from(org.kuali.rice.krms.api.repository.typerelation.TypeTypeRelation typeTypeRelation)
TypeTypeRelation to its mutable TypeTypeRelationBo counterpart.typeTypeRelation - the immutable object.TypeTypeRelationBo the mutable TypeTypeRelationBo.Copyright © 2005–2017 The Kuali Foundation. All rights reserved.