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