FunctionBoService

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

This is the interface for accessing KRMS repository Function related bos

Operations
Main Message Structures

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

Back to Operations

Method updateFunction
Description This will update an existing {@link FunctionDefinition}.
Parameters FunctionDefinition function The Function to update
Return void ???
Errors NONE No Errors

Back to Operations

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

Back to Operations

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

Back to Operations