Class ConnObjectTOQuery
- java.lang.Object
-
- org.apache.syncope.common.rest.api.beans.ConnObjectTOQuery
-
- All Implemented Interfaces:
Serializable
public class ConnObjectTOQuery extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConnObjectTOQuery.Builder
-
Constructor Summary
Constructors Constructor Description ConnObjectTOQuery()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getFiql()
Set<String>
getMoreAttrsToGet()
String
getOrderBy()
String
getPagedResultsCookie()
Integer
getSize()
void
setFiql(String fiql)
void
setMoreAttrsToGet(Set<String> moreAttrsToGet)
void
setOrderBy(String orderBy)
void
setPagedResultsCookie(String pagedResultsCookie)
void
setSize(Integer size)
-
-
-
Method Detail
-
getSize
public Integer getSize()
-
setSize
@Min(1L) @Max(100L) @QueryParam("size") @DefaultValue("25") public void setSize(Integer size)
-
getPagedResultsCookie
public String getPagedResultsCookie()
-
setPagedResultsCookie
@QueryParam("connIdPagedResultsCookie") public void setPagedResultsCookie(String pagedResultsCookie)
-
getOrderBy
@QueryParam("orderby") public String getOrderBy()
-
setOrderBy
public void setOrderBy(String orderBy)
-
getFiql
public String getFiql()
-
setFiql
@QueryParam("fiql") public void setFiql(String fiql)
-
-