Class AuthProfileRestClient
- java.lang.Object
-
- org.apache.syncope.client.console.rest.BaseRestClient
-
- org.apache.syncope.client.console.rest.AuthProfileRestClient
-
- All Implemented Interfaces:
Serializable
,RestClient
public class AuthProfileRestClient extends BaseRestClient
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.apache.syncope.client.console.rest.BaseRestClient
LOG
-
-
Constructor Summary
Constructors Constructor Description AuthProfileRestClient()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
count()
static void
create(AuthProfileTO authProfile)
static void
delete(String key)
static List<AuthProfileTO>
list(int page, int size)
static AuthProfileTO
read(String key)
static void
update(AuthProfileTO authProfile)
-
Methods inherited from class org.apache.syncope.client.console.rest.BaseRestClient
getObject, getService, getService, getStatus, getSyncopeService, resetClient, toOrderBy
-
-
-
-
Method Detail
-
count
public static int count()
-
list
public static List<AuthProfileTO> list(int page, int size)
-
read
public static AuthProfileTO read(String key)
-
create
public static void create(AuthProfileTO authProfile)
-
update
public static void update(AuthProfileTO authProfile)
-
delete
public static void delete(String key)
-
-