use of org.wso2.carbon.apimgt.core.auth.dto.ScopeInfo in project carbon-apimgt by wso2.
the class DefaultScopeRegistrationImpl method getScopeInfo.
private ScopeInfo getScopeInfo(Scope scope) {
ScopeInfo scopeInfo = new ScopeInfo();
scopeInfo.setName(scope.getName());
scopeInfo.setDescription(scope.getDescription());
scopeInfo.setBindings(scope.getBindings());
return scopeInfo;
}
use of org.wso2.carbon.apimgt.core.auth.dto.ScopeInfo in project carbon-apimgt by wso2.
the class WSO2ISScopeRegistrationImpl method getScopeInfo.
private ScopeInfo getScopeInfo(Scope scope) {
ScopeInfo scopeInfo = new ScopeInfo();
scopeInfo.setName(scope.getName());
scopeInfo.setDisplayName(scope.getName());
scopeInfo.setDescription(scope.getDescription());
scopeInfo.setBindings(scope.getBindings());
return scopeInfo;
}
use of org.wso2.carbon.apimgt.core.auth.dto.ScopeInfo in project carbon-apimgt by wso2.
the class DefaultScopeRegistrationImpl method registerScope.
@Override
public boolean registerScope(Scope scope) throws KeyManagementException {
ScopeInfo scopeInfo = getScopeInfo(scope);
Response response = scopeRegistrationServiceStub.registerScope(scopeInfo);
if (response.status() == APIMgtConstants.HTTPStatusCodes.SC_201_CREATED) {
return true;
} else {
throw new KeyManagementException("Scope Registration Failed", ExceptionCodes.SCOPE_REGISTRATION_FAILED);
}
}
use of org.wso2.carbon.apimgt.core.auth.dto.ScopeInfo in project carbon-apimgt by wso2.
the class DefaultScopeRegistrationImplTest method getScopeInfo.
private ScopeInfo getScopeInfo(Scope scope) {
ScopeInfo scopeInfo = new ScopeInfo();
scopeInfo.setName(scope.getName());
scopeInfo.setDescription(scope.getDescription());
scopeInfo.setBindings(scope.getBindings());
return scopeInfo;
}
use of org.wso2.carbon.apimgt.core.auth.dto.ScopeInfo in project carbon-apimgt by wso2.
the class DefaultScopeRegistrationImplTest method testUpdateScope.
@Test
public void testUpdateScope() throws KeyManagementException {
DefaultScopeRegistrationServiceStub defaultScopeRegistrationServiceStub = Mockito.mock(DefaultScopeRegistrationServiceStub.class);
DefaultScopeRegistrationImpl defaultScopeRegistration = new DefaultScopeRegistrationImpl(defaultScopeRegistrationServiceStub);
ScopeInfo scopeInfo = new ScopeInfo();
scopeInfo.setDescription("cde");
scopeInfo.setDisplayName("abc");
Scope scope = new Scope();
scope.setName("abc");
scope.setDescription("cde");
Mockito.when(defaultScopeRegistrationServiceStub.updateScope(Mockito.any(ScopeInfo.class), Mockito.anyString())).thenReturn(Response.builder().status(200).headers(new HashMap<>()).body(new Gson().toJson(scopeInfo), feign.Util.UTF_8).build());
boolean status = defaultScopeRegistration.updateScope(scope);
Assert.assertTrue(status);
}
Aggregations