Class TaskQuery
- java.lang.Object
-
- org.apache.syncope.common.rest.api.beans.AbstractQuery
-
- org.apache.syncope.common.rest.api.beans.TaskQuery
-
- All Implemented Interfaces:
Serializable
public class TaskQuery extends AbstractQuery
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TaskQuery.Builder
-
Constructor Summary
Constructors Constructor Description TaskQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnyTypeKind
getAnyTypeKind()
Boolean
getDetails()
String
getEntityKey()
String
getNotification()
String
getResource()
TaskType
getType()
void
setAnyTypeKind(AnyTypeKind anyTypeKind)
void
setDetails(Boolean details)
void
setEntityKey(String entityKey)
void
setNotification(String notification)
void
setResource(String resource)
void
setType(TaskType type)
-
Methods inherited from class org.apache.syncope.common.rest.api.beans.AbstractQuery
equals, getOrderBy, getPage, getSize, hashCode, setOrderBy, setPage, setSize
-
-
-
-
Method Detail
-
getType
public TaskType getType()
-
setType
@NotNull @PathParam("type") public void setType(TaskType type)
-
getResource
public String getResource()
-
setResource
@QueryParam("resource") public void setResource(String resource)
-
getNotification
public String getNotification()
-
setNotification
@QueryParam("notification") public void setNotification(String notification)
-
getAnyTypeKind
public AnyTypeKind getAnyTypeKind()
-
setAnyTypeKind
@QueryParam("anyTypeKind") public void setAnyTypeKind(AnyTypeKind anyTypeKind)
-
getEntityKey
public String getEntityKey()
-
setEntityKey
@QueryParam("entityKey") public void setEntityKey(String entityKey)
-
getDetails
public Boolean getDetails()
-
setDetails
@QueryParam("details") @DefaultValue("true") public void setDetails(Boolean details)
-
-