Class RealmRestClient
- java.lang.Object
-
- org.apache.syncope.client.console.rest.BaseRestClient
-
- org.apache.syncope.client.console.rest.RealmRestClient
-
- All Implemented Interfaces:
Serializable
,RestClient
public class RealmRestClient extends BaseRestClient
Console client for invoking REST Realm's services.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.client.console.rest.BaseRestClient
LOG
-
-
Constructor Summary
Constructors Constructor Description RealmRestClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProvisioningResult<RealmTO>
create(String parentPath, RealmTO realmTO)
void
delete(String fullPath)
List<DynRealmTO>
listDynRealms()
DynRealmTO
readDynRealm(String key)
PagedResult<RealmTO>
search(RealmQuery query)
ProvisioningResult<RealmTO>
update(RealmTO realmTO)
-
Methods inherited from class org.apache.syncope.client.console.rest.BaseRestClient
getObject, getService, getService, getStatus, getSyncopeService, resetClient, toOrderBy
-
-
-
-
Method Detail
-
search
public PagedResult<RealmTO> search(RealmQuery query)
-
listDynRealms
public List<DynRealmTO> listDynRealms()
-
readDynRealm
public DynRealmTO readDynRealm(String key)
-
create
public ProvisioningResult<RealmTO> create(String parentPath, RealmTO realmTO)
-
update
public ProvisioningResult<RealmTO> update(RealmTO realmTO)
-
delete
public void delete(String fullPath)
-
-