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 classTaskQuery.Builder
-
Constructor Summary
Constructors Constructor Description TaskQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnyTypeKindgetAnyTypeKind()BooleangetDetails()StringgetEntityKey()StringgetNotification()StringgetResource()TaskTypegetType()voidsetAnyTypeKind(AnyTypeKind anyTypeKind)voidsetDetails(Boolean details)voidsetEntityKey(String entityKey)voidsetNotification(String notification)voidsetResource(String resource)voidsetType(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)
-
-