Class AnyObjectRestClient
- java.lang.Object
-
- org.apache.syncope.client.console.rest.BaseRestClient
-
- org.apache.syncope.client.console.rest.AbstractAnyRestClient<AnyObjectTO>
-
- org.apache.syncope.client.console.rest.AnyObjectRestClient
-
- All Implemented Interfaces:
Serializable
,RestClient
public class AnyObjectRestClient extends AbstractAnyRestClient<AnyObjectTO>
Console client for invoking Rest any type class services.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.client.console.rest.BaseRestClient
LOG
-
-
Constructor Summary
Constructors Constructor Description AnyObjectRestClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
count(String realm, String fiql, String type)
ProvisioningResult<AnyObjectTO>
create(AnyObjectCR createReq)
protected Class<? extends AnyService<AnyObjectTO>>
getAnyServiceClass()
List<AnyObjectTO>
search(String realm, String fiql, int page, int size, SortParam<String> sort, String type)
ProvisioningResult<AnyObjectTO>
update(String etag, AnyObjectUR updateReq)
-
Methods inherited from class org.apache.syncope.client.console.rest.AbstractAnyRestClient
associate, batch, deassociate, delete, parseBatchResponse, read
-
Methods inherited from class org.apache.syncope.client.console.rest.BaseRestClient
getObject, getService, getService, getStatus, getSyncopeService, resetClient, toOrderBy
-
-
-
-
Method Detail
-
getAnyServiceClass
protected Class<? extends AnyService<AnyObjectTO>> getAnyServiceClass()
- Specified by:
getAnyServiceClass
in classAbstractAnyRestClient<AnyObjectTO>
-
create
public ProvisioningResult<AnyObjectTO> create(AnyObjectCR createReq)
-
update
public ProvisioningResult<AnyObjectTO> update(String etag, AnyObjectUR updateReq)
-
count
public int count(String realm, String fiql, String type)
- Specified by:
count
in classAbstractAnyRestClient<AnyObjectTO>
-
search
public List<AnyObjectTO> search(String realm, String fiql, int page, int size, SortParam<String> sort, String type)
- Specified by:
search
in classAbstractAnyRestClient<AnyObjectTO>
-
-