fixed javadoc

This commit is contained in:
Mustapha Zorgati 2017-12-11 11:18:25 +01:00 committed by Holger Hagen
parent 8142d90d38
commit 4700278dea
2 changed files with 6 additions and 5 deletions

View File

@ -43,6 +43,7 @@ public interface TaskService {
* @return the created task
* @throws NotAuthorizedException TODO
* @throws WorkbasketNotFoundException TODO
* @throws ClassificationNotFoundException TODO
*/
Task createTask(Task task) throws NotAuthorizedException, WorkbasketNotFoundException, ClassificationNotFoundException;

View File

@ -21,15 +21,15 @@ public interface WorkbasketQuery extends BaseQuery<Workbasket> {
/**
* Add your created-Dates to your query.
* @param created
* @return
* @param created TODO
* @return TODO
*/
WorkbasketQuery created(Date... created);
/**
* Add your modified-Dates to your query.
* @param modified
* @return
* @param created TODO
* @return TODO
*/
WorkbasketQuery modified(Date... created);
@ -57,7 +57,7 @@ public interface WorkbasketQuery extends BaseQuery<Workbasket> {
* @param accessIds
* the accessIds as String
* @return the query
* @throws InvalidArgumentException
* @throws InvalidArgumentException TODO
*/
WorkbasketQuery access(WorkbasketAuthorization permission, String... accessIds) throws InvalidArgumentException;