Interface PlanningsServiceLocal
-
public interface PlanningsServiceLocalLocal interface for the Plannings service from the Planner API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<Planning>addPlannings(java.util.List<Planning> plannings)Creates new planningsvoiddeletePlanning(Planning planning)Deletes specified planningPlanninggetPlanningById(java.lang.String id)Returns the planning at the specified IDjava.util.List<Planning>getPlanningsByDocument(PlanningsFilter filter)Returns plannings fulfilling the search criteriajava.util.List<Planning>setPlannings(java.util.List<Planning> plannings)Modifies existing plannings
-
-
-
Method Detail
-
getPlanningById
Planning getPlanningById(java.lang.String id) throws PubServerException
Returns the planning at the specified ID- Parameters:
id- planning ID- Returns:
- the planning
- Throws:
PubServerException- See Also:
Planning
-
getPlanningsByDocument
java.util.List<Planning> getPlanningsByDocument(PlanningsFilter filter) throws PubServerException
Returns plannings fulfilling the search criteria- Parameters:
filter- search criteria in the PlanningsFilter object- Returns:
- the list of plannings
- Throws:
PubServerException- See Also:
Planning,PlanningsFilter
-
setPlannings
java.util.List<Planning> setPlannings(java.util.List<Planning> plannings) throws PubServerException
Modifies existing plannings- Parameters:
plannings- the list of plannings to modify- Returns:
- the list of processed plannings
- Throws:
PubServerException- See Also:
Planning
-
addPlannings
java.util.List<Planning> addPlannings(java.util.List<Planning> plannings) throws PubServerException
Creates new plannings- Parameters:
plannings- the list of plannings to create- Returns:
- the list of processed plannings
- Throws:
PubServerException- See Also:
Planning
-
deletePlanning
void deletePlanning(Planning planning) throws PubServerException
Deletes specified planning- Parameters:
planning- the planning to delete- Throws:
PubServerException- See Also:
Planning
-
-