public interface FunctionRepositoryService
Modifier and Type | Method and Description |
---|---|
FunctionDefinition |
getFunction(String functionId)
Retrieves the function for the given functionId.
|
List<FunctionDefinition> |
getFunctions(List<String> functionIds)
Retrieves all of the functions for the given list of functionIds.
|
FunctionDefinition getFunction(String functionId) throws RiceIllegalArgumentException
functionId
- the id of the function to retrieveRiceIllegalArgumentException
- if the given functionId is nullList<FunctionDefinition> getFunctions(List<String> functionIds) throws RiceIllegalArgumentException
The list which is returned from this operation may not be the same size as the list which is passed to this method. If a function doesn't exist for a given function id then no result for that id will be returned in the list. As a result of this, the returned list can be empty, but it will never be null.
functionIds
- the list of function ids for which to retrieve the functionsRiceIllegalArgumentException
- if the given list of functionIds is nullCopyright © 2005–2015 The Kuali Foundation. All rights reserved.