Name | FunctionBo | |
---|---|---|
Version | ||
Included Services | FunctionRepositoryService | |
Java Package | org.kuali.rice.krms.impl.repository |
Method | createFunction | ||
---|---|---|---|
Description | This will create a {@link FunctionDefinition} exactly like the function passed in. | ||
Parameters | FunctionDefinition | function | The Function to create |
Return | FunctionDefinition | ??? | |
Errors | NONE | No Errors |
Method | updateFunction | ||
---|---|---|---|
Description | This will update an existing {@link FunctionDefinition}. | ||
Parameters | FunctionDefinition | function | The Function to update |
Return | void | ??? | |
Errors | NONE | No Errors |
Method | getFunctionById | ||
---|---|---|---|
Description | Retrieves a Function from the repository based on the given function id. | ||
Parameters | String | functionId | the id of the Function to retrieve |
Return | FunctionDefinition | a {@link FunctionDefinition} identified by the given functionId. A null reference is returned if an invalid or non-existent functionId is supplied. |
|
Errors | NONE | No Errors |
Method | getFunctionByNameAndNamespace | ||
---|---|---|---|
Description | Retrieves a Function from the repository based on the provided function name and namespace. |
||
Parameters | String | name | the name of the Function to retrieve. |
String | namespace | the namespace that the Function is under. | |
Return | FunctionDefinition | a {@link FunctionDefinition} identified by the given name and namespace. A null reference is returned if an invalid or non-existent function name and namespace combination is supplied. |
|
Errors | NONE | No Errors |