mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Refactored DCA
This commit is contained in:
parent
1d18c6de1e
commit
eeca0d4ded
@ -35,22 +35,9 @@ import org.wso2.carbon.identity.application.mgt.ApplicationManagementService;
|
|||||||
import org.wso2.carbon.identity.base.IdentityException;
|
import org.wso2.carbon.identity.base.IdentityException;
|
||||||
import org.wso2.carbon.identity.oauth.OAuthAdminService;
|
import org.wso2.carbon.identity.oauth.OAuthAdminService;
|
||||||
import org.wso2.carbon.identity.oauth.dto.OAuthConsumerAppDTO;
|
import org.wso2.carbon.identity.oauth.dto.OAuthConsumerAppDTO;
|
||||||
import org.wso2.carbon.identity.oauth.extension.ApplicationConstants;
|
|
||||||
import org.wso2.carbon.identity.oauth.extension.OAuthApplicationInfo;
|
|
||||||
import org.wso2.carbon.identity.oauth.extension.RegistrationService;
|
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantUtils;
|
import org.wso2.carbon.utils.multitenancy.MultitenantUtils;
|
||||||
|
|
||||||
import javax.ws.rs.Consumes;
|
|
||||||
import javax.ws.rs.DELETE;
|
|
||||||
import javax.ws.rs.POST;
|
|
||||||
import javax.ws.rs.Produces;
|
|
||||||
import javax.ws.rs.QueryParam;
|
|
||||||
import javax.ws.rs.core.MediaType;
|
|
||||||
import javax.ws.rs.core.Response;
|
|
||||||
|
|
||||||
import org.wso2.carbon.identity.oauth.extension.profile.RegistrationProfile;
|
import org.wso2.carbon.identity.oauth.extension.profile.RegistrationProfile;
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantUtils;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
|
||||||
@ -58,37 +45,6 @@ public class DynamicClientRegistrationUtil {
|
|||||||
|
|
||||||
private static final Log log = LogFactory.getLog(DynamicClientRegistrationUtil.class);
|
private static final Log log = LogFactory.getLog(DynamicClientRegistrationUtil.class);
|
||||||
|
|
||||||
|
|
||||||
public Response register(RegistrationProfile profile) {
|
|
||||||
try {
|
|
||||||
PrivilegedCarbonContext.startTenantFlow();
|
|
||||||
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantDomain(
|
|
||||||
MultitenantConstants.SUPER_TENANT_DOMAIN_NAME);
|
|
||||||
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(MultitenantConstants.SUPER_TENANT_ID);
|
|
||||||
|
|
||||||
OAuthApplicationInfo info = this.registerApplication(profile);
|
|
||||||
return Response.status(Response.Status.ACCEPTED).entity(info.toString()).build();
|
|
||||||
} catch (APIManagementException e) {
|
|
||||||
String msg = "Error occurred while registering client '" + profile.getClientName() + "'";
|
|
||||||
log.error(msg, e);
|
|
||||||
return Response.serverError().entity(msg).build();
|
|
||||||
} finally {
|
|
||||||
PrivilegedCarbonContext.endTenantFlow();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public Response unregister(String applicationName, String userId, String consumerKey) {
|
|
||||||
try {
|
|
||||||
this.unregisterApplication(userId, applicationName, consumerKey);
|
|
||||||
return Response.status(Response.Status.ACCEPTED).build();
|
|
||||||
} catch (APIManagementException e) {
|
|
||||||
String msg = "Error occurred while unregistering client '" + applicationName + "'";
|
|
||||||
log.error(msg, e);
|
|
||||||
return Response.serverError().entity(msg).build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public static OAuthApplicationInfo registerApplication(RegistrationProfile profile) throws APIManagementException {
|
public static OAuthApplicationInfo registerApplication(RegistrationProfile profile) throws APIManagementException {
|
||||||
OAuthApplicationInfo oAuthApplicationInfo = new OAuthApplicationInfo();
|
OAuthApplicationInfo oAuthApplicationInfo = new OAuthApplicationInfo();
|
||||||
|
|
||||||
|
|||||||
@ -20,28 +20,14 @@ package org.wso2.carbon.identity.oauth.extension.impl;
|
|||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.json.JSONException;
|
|
||||||
import org.json.JSONObject;
|
|
||||||
import org.wso2.carbon.apimgt.api.APIManagementException;
|
import org.wso2.carbon.apimgt.api.APIManagementException;
|
||||||
import org.wso2.carbon.apimgt.impl.utils.APIUtil;
|
|
||||||
import org.wso2.carbon.context.CarbonContext;
|
|
||||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||||
import org.wso2.carbon.identity.application.common.IdentityApplicationManagementException;
|
|
||||||
import org.wso2.carbon.identity.application.common.model.InboundAuthenticationConfig;
|
|
||||||
import org.wso2.carbon.identity.application.common.model.InboundAuthenticationRequestConfig;
|
|
||||||
import org.wso2.carbon.identity.application.common.model.Property;
|
|
||||||
import org.wso2.carbon.identity.application.common.model.ServiceProvider;
|
|
||||||
import org.wso2.carbon.identity.application.mgt.ApplicationManagementService;
|
|
||||||
import org.wso2.carbon.identity.base.IdentityException;
|
|
||||||
import org.wso2.carbon.identity.oauth.OAuthAdminService;
|
|
||||||
import org.wso2.carbon.identity.oauth.dto.OAuthConsumerAppDTO;
|
|
||||||
import org.wso2.carbon.identity.oauth.extension.DynamicClientRegistrationUtil;
|
import org.wso2.carbon.identity.oauth.extension.DynamicClientRegistrationUtil;
|
||||||
import org.wso2.carbon.identity.oauth.extension.FaultResponse;
|
import org.wso2.carbon.identity.oauth.extension.FaultResponse;
|
||||||
import org.wso2.carbon.identity.oauth.extension.OAuthApplicationInfo;
|
import org.wso2.carbon.identity.oauth.extension.OAuthApplicationInfo;
|
||||||
import org.wso2.carbon.identity.oauth.extension.RegistrationService;
|
import org.wso2.carbon.identity.oauth.extension.RegistrationService;
|
||||||
import org.wso2.carbon.identity.oauth.extension.profile.RegistrationProfile;
|
import org.wso2.carbon.identity.oauth.extension.profile.RegistrationProfile;
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
import org.wso2.carbon.utils.multitenancy.MultitenantConstants;
|
||||||
import org.wso2.carbon.utils.multitenancy.MultitenantUtils;
|
|
||||||
|
|
||||||
import javax.ws.rs.Consumes;
|
import javax.ws.rs.Consumes;
|
||||||
import javax.ws.rs.DELETE;
|
import javax.ws.rs.DELETE;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user