Interface ParamDropDownListsServiceLocal
-
public interface ParamDropDownListsServiceLocalLocal interface for the ParamDropDownLists service from the Planner API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intaddParameterDropDownList(ParamDropDownList parameterDdList)Creates a new parameter drop down listServiceResultdeleteParameterDropDownList(int id)Deletes parameter drop down list at the specified IDParamDropDownListgetParameterDropDownListById(int id)Returns the parameter drop down list at the specified IDjava.util.List<ParamDropDownList>getParameterDropDownLists(ParameterDropDownListFilter filter)Returns parameter drop down lists fulfilling the search criteria
-
-
-
Method Detail
-
getParameterDropDownListById
ParamDropDownList getParameterDropDownListById(int id) throws PubServerException
Returns the parameter drop down list at the specified ID- Parameters:
id- dropdown ID- Returns:
- the DropDownList
- Throws:
PubServerException- See Also:
ParamDropDownList
-
getParameterDropDownLists
java.util.List<ParamDropDownList> getParameterDropDownLists(ParameterDropDownListFilter filter) throws ServiceException
Returns parameter drop down lists fulfilling the search criteria- Parameters:
filter- search criteria in the ParameterDropDownListFilter object- Returns:
- the list of DropDownList
- Throws:
ServiceException- See Also:
ParameterDropDownListFilter,ParamDropDownList
-
addParameterDropDownList
int addParameterDropDownList(ParamDropDownList parameterDdList) throws PubServerException
Creates a new parameter drop down list- Parameters:
parameterDdList- to add- Returns:
- id of added ParamDropDownList
- Throws:
ServiceExceptionPubServerException- See Also:
ParamDropDownList
-
deleteParameterDropDownList
ServiceResult deleteParameterDropDownList(int id) throws ServiceException
Deletes parameter drop down list at the specified ID- Parameters:
id- ID of prameter drop down list- Returns:
- Throws:
ServiceException
-
-