PropositionBoService

Name PropositionBo
Version
Included Services  
Java Package org.kuali.rice.krms.impl.repository

This is the interface for accessing KRMS repository Proposition related
business objects.

Operations
Main Message Structures

Method createProposition
Description This will create a {@link PropositionDefinition} exactly like the parameter passed in.
Parameters PropositionDefinition prop the proposition to create
Return PropositionDefinition ???
Errors NONE No Errors

Back to Operations

Method updateProposition
Description This will update an existing {@link PropositionDefinition}.
Parameters PropositionDefinition prop the proposition to update
Return void ???
Errors NONE No Errors

Back to Operations

Method getPropositionById
Description Lookup the proposition based on the given proposition id.
Parameters String propId the given proposition id
Return PropositionDefinition a proposition associated with the given proposition id. A null reference is returned if an invalid or
non-existent id is supplied.
Errors NONE No Errors

Back to Operations

Method createParameter
Description This will create a {@link PropositionParameter} exactly like the parameter passed in.
Parameters PropositionParameter parameter the proposition parameter to create
Return void ???
Errors NONE No Errors

Back to Operations

Method updateParameter
Description This will update a {@link PropositionParameter}.
Parameters PropositionParameter parameter the proposition parameter to update
Return void ???
Errors NONE No Errors

Back to Operations

Method getParameters
Description Lookup the proposition parameters based on the given proposition id.
Parameters String propId the given proposition id
Return PropositionParameterList a list of PropositionParameters associated with the given proposition id. A null reference is returned if an invalid or
non-existant id is supplied.
Errors NONE No Errors

Back to Operations

Method getParameterById
Description Lookup the proposition parameter based on the id.
Parameters String id the given proposition id
Return PropositionParameter an immutable PropositionParameters associated with the given id. A null reference is returned if an invalid or
non-existant id is supplied.
Errors NONE No Errors

Back to Operations

Method getParameterByPropIdAndSequenceNumber
Description Lookup the proposition parameter based on the proposition id and sequence number.
Parameters String propId ???
Integer sequenceNumber ???
Return PropositionParameter an immutable PropositionParameters associated with the given proposition id and sequence number. A null reference is returned if an invalid or
non-existant.
Errors NONE No Errors

Back to Operations