Uses of Class
org.oa4mp.server.api.adminClient.admin.AdminClient
-
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2 that return types with arguments of type AdminClient Modifier and Type Method Description AdminClientStore<AdminClient>
OA2SE. getAdminClientStore()
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm with parameters of type AdminClient Modifier and Type Method Description protected void
ManagerFacade. checkAdminClientSecret(AdminClient client)
protected Response
ManagerFacade. process(OA2Client subject, AdminClient target, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionAdd actionAdd, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionApprove actionApprove, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionCreate actionCreate, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionExecute actionExecute, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionGet actionGet, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionList actionList, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionRemove actionRemove, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionSet actionSet, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, ActionUnapprove actionUnapprove, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, OA2Client target, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient subject, AdminClient target, net.sf.json.JSONObject rawJSON)
protected Response
ManagerFacade. process(AdminClient adminClient, net.sf.json.JSONObject rawJSON)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.oidc_cm
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.oidc_cm that return AdminClient Modifier and Type Method Description protected AdminClient
OIDCCMServlet. getAndCheckAdminClient(javax.servlet.http.HttpServletRequest request)
Pulls the id and secret from the header then verifies the secret and if it passes, returns the client.Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.oidc_cm with parameters of type AdminClient Modifier and Type Method Description protected void
OIDCCMServlet. checkAdminPermission(AdminClient adminClient, OA2Client client)
Checks that this client exists on the system and that if it exists, the admin client actually owns it.protected HashMap<String,String>
OIDCCMServlet. defaultReplacements(javax.servlet.http.HttpServletRequest req, AdminClient adminClient, OA2Client client)
protected OA2Client
OIDCCMServlet. processRegistrationRequest(net.sf.json.JSONObject jsonRequest, AdminClient adminClient, boolean isAnonymous, javax.servlet.http.HttpServletResponse httpResponse, OA2Client client)
protected OA2Client
OIDCCMServlet. updateClient(OA2Client client, AdminClient adminClient, boolean isAnonymous, net.sf.json.JSONObject jsonRequest, boolean newClient, javax.servlet.http.HttpServletResponse httpResponse)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util
Fields in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util declared as AdminClient Modifier and Type Field Description protected AdminClient
AbstractDDRequest. adminClient
AdminClient
RequestFactory.RequestObject. adminClient
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util that return AdminClient Modifier and Type Method Description AdminClient
AbstractDDRequest. getAdminClient()
protected AdminClient
AbstractDDServer. subset(AdminClient client, List<String> attributes)
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util that return types with arguments of type AdminClient Modifier and Type Method Description protected AdminClientStore<AdminClient>
AbstractDDServer. getAdminClientStore()
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util with parameters of type AdminClient Modifier and Type Method Description static ACGetRequest
RequestFactory. createRequest(AdminClient adminClient, TypeAdmin typeClient, ActionGet actionGet, OA2Client client, net.sf.json.JSON json)
static AttributeGetRequest
RequestFactory. createRequest(AdminClient aSubj, TypeAttribute typeAttribute, ActionGet actionGet, OA2Client cTarget, net.sf.json.JSON content)
static AttributeRemoveRequest
RequestFactory. createRequest(AdminClient aSubj, TypeAttribute typeAttribute, ActionRemove actionRemove, OA2Client cTarget, net.sf.json.JSON content)
static AttributeSetClientRequest
RequestFactory. createRequest(AdminClient aSubj, TypeAttribute typeAttribute, ActionSet actionSet, OA2Client cTarget, net.sf.json.JSON content)
static ApproveRequest
RequestFactory. createRequest(AdminClient adminClient, TypeClient typeClient, ActionApprove actionApprove, OA2Client client, net.sf.json.JSON json)
static CreateRequest
RequestFactory. createRequest(AdminClient adminClient, TypeClient typeClient, ActionCreate actionCreate, OA2Client client, net.sf.json.JSON json)
static GetRequest
RequestFactory. createRequest(AdminClient adminClient, TypeClient typeClient, ActionGet actionGet, OA2Client client, net.sf.json.JSON json)
static RemoveRequest
RequestFactory. createRequest(AdminClient adminClient, TypeClient typeClient, ActionRemove actionRemove, OA2Client client, net.sf.json.JSON json)
static UnapproveRequest
RequestFactory. createRequest(AdminClient adminClient, TypeClient typeClient, ActionUnapprove actionUnapprove, OA2Client client, net.sf.json.JSON json)
static AddClientRequest
RequestFactory. createRequest(AdminClient adminClient, TypePermission typeP, ActionAdd acreate, OA2Client client, net.sf.json.JSON json)
static PermissionRequest
RequestFactory. createRequest(AdminClient adminClient, TypePermission typeP, ActionList aList, OA2Client client, net.sf.json.JSON json)
static RemoveClientRequest
RequestFactory. createRequest(AdminClient adminClient, TypePermission typeP, ActionRemove actionRemove, OA2Client client, net.sf.json.JSON json)
protected AdminClient
AbstractDDServer. subset(AdminClient client, List<String> attributes)
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util with parameters of type AdminClient Constructor Description AbstractDDRequest(AdminClient adminClient, OA2Client client)
DDAttributeRequest(AdminClient adminClient, OA2Client client, List<String> attributes)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.admin
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.admin that return AdminClient Modifier and Type Method Description AdminClient
AbstractACRequest. getAdminClient()
The admin client (may be partial) that was sent with this request.AdminClient
ACGetResponse. getAdminClient()
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.admin with parameters of type AdminClient Modifier and Type Method Description void
AbstractACRequest. setAdminClient(AdminClient adminClient)
void
ACGetResponse. setAdminClient(AdminClient adminClient)
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.admin with parameters of type AdminClient Constructor Description AbstractACRequest(AdminClient adminClient)
ACGetRequest(AdminClient adminClient)
ACGetResponse(AdminClient adminClient, boolean approved)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.attributes
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.attributes that return AdminClient Modifier and Type Method Description AdminClient
AttributeAdminClientResponse. getAdminClient()
AdminClient
AttributeSetAdminClientResponse. getAdminClient()
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.attributes with parameters of type AdminClient Modifier and Type Method Description void
AttributeAdminClientResponse. setAdminClient(AdminClient adminClient)
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.attributes with parameters of type AdminClient Constructor Description AttributeAdminClientResponse(AdminClient adminClient)
AttributeGetAdminClientResponse(AdminClient adminClient, List<String> attributes)
AttributeGetRequest(AdminClient adminClient, OA2Client client, List<String> attributes)
AttributeListRequest(AdminClient adminClient, OA2Client client)
AttributeRemoveRequest(AdminClient adminClient, OA2Client client, List<String> attributes)
AttributeRequest(AdminClient adminClient, OA2Client client)
AttributeSetAdminClientResponse(AdminClient adminClient, Map<String,Object> attributes)
AttributeSetClientRequest(AdminClient adminClient, OA2Client client, Map<String,Object> attributes)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.client
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.client with parameters of type AdminClient Constructor Description ApproveRequest(AdminClient adminClient, OA2Client client, Map<String,Object> attributes)
ClientRequest(AdminClient adminClient, OA2Client client)
CreateRequest(AdminClient adminClient, OA2Client client, Map<String,Object> attributes)
GetRequest(AdminClient adminClient, OA2Client client)
RemoveRequest(AdminClient adminClient, OA2Client client)
UnapproveRequest(AdminClient adminClient, OA2Client client, Map<String,Object> attributes)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.permissions
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.permissions that return types with arguments of type AdminClient Modifier and Type Method Description List<AdminClient>
ListAdminsResponse. getAdmins()
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.permissions with parameters of type AdminClient Constructor Description AddClientRequest(AdminClient adminClient, OA2Client client)
ListAdminsRequest(AdminClient adminClient, OA2Client client)
ListClientsRequest(AdminClient adminClient, OA2Client client)
PermissionRequest(AdminClient adminClient, OA2Client client)
RemoveClientRequest(AdminClient adminClient, OA2Client client)
Constructor parameters in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.cm.util.permissions with type arguments of type AdminClient Constructor Description ListAdminsResponse(List<AdminClient> admins)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.servlet
Methods in edu.uiuc.ncsa.myproxy.oa4mp.oauth2.servlet that return AdminClient Modifier and Type Method Description AdminClient
MultiAuthServlet. getAdminClient(edu.uiuc.ncsa.security.core.Identifier identifier)
AdminClient
MultiAuthServlet. getAdminClient(javax.servlet.http.HttpServletRequest request)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.server
Methods in edu.uiuc.ncsa.myproxy.oa4mp.server that return types with arguments of type AdminClient Modifier and Type Method Description AdminClientStore<AdminClient>
ServiceEnvironment. getAdminClientStore()
Returns theAdminClientStore
.AdminClientStore<AdminClient>
ServiceEnvironmentImpl. getAdminClientStore()
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.adminClient
Classes in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.adminClient with type parameters of type AdminClient Modifier and Type Class Description class
AdminClientConverter<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 1:17 PMclass
AdminClientFS<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 12:51 PMclass
AdminClientMemoryStore<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 12:48 PMclass
AdminClientProvider<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 1:08 PMclass
AdminClientSQLStore<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 12:52 PMinterface
AdminClientStore<V extends AdminClient>
Created by Jeff Gaynor
on 10/12/16 at 1:20 PMclass
MultiDSAdminClientStoreProvider<V extends AdminClient>
Created by Jeff Gaynor
on 10/20/16 at 2:50 PMFields in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.adminClient with type parameters of type AdminClient Modifier and Type Field Description protected static AdminClientConverter<? extends AdminClient>
AdminClientStoreProviders. adminClientConverter
protected static edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<? extends AdminClient>
AdminClientStoreProviders. adminClientProvider
Methods in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.adminClient that return types with arguments of type AdminClient Modifier and Type Method Description static AdminClientConverter<? extends AdminClient>
AdminClientStoreProviders. getAdminClientConverter()
static edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<? extends AdminClient>
AdminClientStoreProviders. getAdminClientProvider()
Method parameters in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.adminClient with type arguments of type AdminClient Modifier and Type Method Description static void
AdminClientStoreProviders. setAdminClientConverter(AdminClientConverter<? extends AdminClient> adminClientConverter)
static void
AdminClientStoreProviders. setAdminClientProvider(edu.uiuc.ncsa.security.core.util.IdentifiableProviderImpl<? extends AdminClient> adminClientProvider)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.things
Method parameters in edu.uiuc.ncsa.myproxy.oa4mp.server.admin.things with type arguments of type AdminClient Modifier and Type Method Description static void
SATFactory. setAdminClientConverter(AdminClientConverter<? extends AdminClient> adminClientConverter)
-
Uses of AdminClient in edu.uiuc.ncsa.myproxy.oa4mp.server.util
Methods in edu.uiuc.ncsa.myproxy.oa4mp.server.util that return AdminClient Modifier and Type Method Description AdminClient
ACNewClientEvent. getAdminClient()
Constructors in edu.uiuc.ncsa.myproxy.oa4mp.server.util with parameters of type AdminClient Constructor Description ACNewClientEvent(Object source, AdminClient adminClient, BaseClient client)
NewAdminClientEvent(Object source, AdminClient client)
-
Uses of AdminClient in edu.uiuc.ncsa.oa2.qdl.storage
Classes in edu.uiuc.ncsa.oa2.qdl.storage with type parameters of type AdminClient Modifier and Type Class Description class
AdminClientStemMC<V extends AdminClient>
Created by Jeff Gaynor
on 12/23/20 at 6:21 AM
-