Class ClientAppRestClient
- java.lang.Object
-
- org.apache.syncope.client.console.rest.BaseRestClient
-
- org.apache.syncope.client.console.rest.ClientAppRestClient
-
- All Implemented Interfaces:
Serializable
,RestClient
public class ClientAppRestClient extends BaseRestClient
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected static Comparator<ClientAppTO>
COMPARATOR
-
Fields inherited from class org.apache.syncope.client.console.rest.BaseRestClient
LOG
-
-
Constructor Summary
Constructors Constructor Description ClientAppRestClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T extends ClientAppTO>
voidcreate(ClientAppType type, T policy)
void
delete(ClientAppType type, String key)
<T extends ClientAppTO>
List<T>list(ClientAppType type)
<T extends ClientAppTO>
Tread(ClientAppType type, String key)
<T extends ClientAppTO>
voidupdate(ClientAppType type, T policy)
-
Methods inherited from class org.apache.syncope.client.console.rest.BaseRestClient
getObject, getService, getService, getStatus, getSyncopeService, resetClient, toOrderBy
-
-
-
-
Field Detail
-
COMPARATOR
protected static final Comparator<ClientAppTO> COMPARATOR
-
-
Method Detail
-
read
public <T extends ClientAppTO> T read(ClientAppType type, String key)
-
list
public <T extends ClientAppTO> List<T> list(ClientAppType type)
-
create
public <T extends ClientAppTO> void create(ClientAppType type, T policy)
-
update
public <T extends ClientAppTO> void update(ClientAppType type, T policy)
-
delete
public void delete(ClientAppType type, String key)
-
-