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 * @return the created task
* @throws NotAuthorizedException TODO * @throws NotAuthorizedException TODO
* @throws WorkbasketNotFoundException TODO * @throws WorkbasketNotFoundException TODO
* @throws ClassificationNotFoundException TODO
*/ */
Task createTask(Task task) throws NotAuthorizedException, WorkbasketNotFoundException, ClassificationNotFoundException; 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. * Add your created-Dates to your query.
* @param created * @param created TODO
* @return * @return TODO
*/ */
WorkbasketQuery created(Date... created); WorkbasketQuery created(Date... created);
/** /**
* Add your modified-Dates to your query. * Add your modified-Dates to your query.
* @param modified * @param created TODO
* @return * @return TODO
*/ */
WorkbasketQuery modified(Date... created); WorkbasketQuery modified(Date... created);
@ -57,7 +57,7 @@ public interface WorkbasketQuery extends BaseQuery<Workbasket> {
* @param accessIds * @param accessIds
* the accessIds as String * the accessIds as String
* @return the query * @return the query
* @throws InvalidArgumentException * @throws InvalidArgumentException TODO
*/ */
WorkbasketQuery access(WorkbasketAuthorization permission, String... accessIds) throws InvalidArgumentException; WorkbasketQuery access(WorkbasketAuthorization permission, String... accessIds) throws InvalidArgumentException;