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 Static Methods Concrete Methods Modifier and Type Method Description static org.apache.syncope.common.lib.to.ProvisioningResult<org.apache.syncope.common.lib.to.RealmTO>
create(String parentPath, org.apache.syncope.common.lib.to.RealmTO realmTO)
static void
delete(String fullPath)
static List<org.apache.syncope.common.lib.to.RealmTO>
list(String fullpath)
static List<org.apache.syncope.common.lib.to.DynRealmTO>
listDynRealms()
static org.apache.syncope.common.lib.to.DynRealmTO
readDynRealm(String key)
static org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.to.RealmTO>
search(org.apache.syncope.common.rest.api.beans.RealmQuery query)
static org.apache.syncope.common.lib.to.ProvisioningResult<org.apache.syncope.common.lib.to.RealmTO>
update(org.apache.syncope.common.lib.to.RealmTO realmTO)
-
Methods inherited from class org.apache.syncope.client.console.rest.BaseRestClient
getObject, getService, getService, getStatus, getSyncopeService, resetClient, toOrderBy
-
-
-
-
Method Detail
-
search
public static org.apache.syncope.common.lib.to.PagedResult<org.apache.syncope.common.lib.to.RealmTO> search(org.apache.syncope.common.rest.api.beans.RealmQuery query)
-
listDynRealms
public static List<org.apache.syncope.common.lib.to.DynRealmTO> listDynRealms()
-
readDynRealm
public static org.apache.syncope.common.lib.to.DynRealmTO readDynRealm(String key)
-
create
public static org.apache.syncope.common.lib.to.ProvisioningResult<org.apache.syncope.common.lib.to.RealmTO> create(String parentPath, org.apache.syncope.common.lib.to.RealmTO realmTO)
-
update
public static org.apache.syncope.common.lib.to.ProvisioningResult<org.apache.syncope.common.lib.to.RealmTO> update(org.apache.syncope.common.lib.to.RealmTO realmTO)
-
delete
public static void delete(String fullPath)
-
-