Name | PropositionBo | |
---|---|---|
Version | ||
Included Services | ||
Java Package | org.kuali.rice.krms.impl.repository |
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 |
Method | updateProposition | ||
---|---|---|---|
Description | This will update an existing {@link PropositionDefinition}. | ||
Parameters | PropositionDefinition | prop | the proposition to update |
Return | void | ??? | |
Errors | NONE | No Errors |
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 |
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 |
Method | updateParameter | ||
---|---|---|---|
Description | This will update a {@link PropositionParameter}. | ||
Parameters | PropositionParameter | parameter | the proposition parameter to update |
Return | void | ??? | |
Errors | NONE | No Errors |
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 |
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 |
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 |