fixed javadoc
This commit is contained in:
parent
8142d90d38
commit
4700278dea
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue