use of org.wso2.charon3.core.protocol.SCIMResponse in project charon by wso2.
the class ResourceTypeResourceManager method listWithPOST.
@Override
public SCIMResponse listWithPOST(String resourceString, UserManager userManager) {
String error = "Request is undefined";
BadRequestException badRequestException = new BadRequestException(error, ResponseCodeConstants.INVALID_PATH);
return encodeSCIMException(badRequestException);
}
use of org.wso2.charon3.core.protocol.SCIMResponse in project charon by wso2.
the class ResourceTypeResourceManager method create.
@Override
public SCIMResponse create(String scimObjectString, UserManager userManager, String attributes, String excludeAttributes) {
String error = "Request is undefined";
BadRequestException badRequestException = new BadRequestException(error, ResponseCodeConstants.INVALID_PATH);
return encodeSCIMException(badRequestException);
}
use of org.wso2.charon3.core.protocol.SCIMResponse in project charon by wso2.
the class ServiceProviderConfigResourceManager method delete.
@Override
public SCIMResponse delete(String id, UserManager userManager) {
String error = "Request is undefined";
BadRequestException badRequestException = new BadRequestException(error, ResponseCodeConstants.INVALID_PATH);
return encodeSCIMException(badRequestException);
}
use of org.wso2.charon3.core.protocol.SCIMResponse in project charon by wso2.
the class ServiceProviderConfigResourceManager method create.
@Override
public SCIMResponse create(String scimObjectString, UserManager userManager, String attributes, String excludeAttributes) {
String error = "Request is undefined";
BadRequestException badRequestException = new BadRequestException(error, ResponseCodeConstants.INVALID_PATH);
return encodeSCIMException(badRequestException);
}
use of org.wso2.charon3.core.protocol.SCIMResponse in project charon by wso2.
the class ServiceProviderConfigResourceManager method listWithPOST.
@Override
public SCIMResponse listWithPOST(String resourceString, UserManager userManager) {
String error = "Request is undefined";
BadRequestException badRequestException = new BadRequestException(error, ResponseCodeConstants.INVALID_PATH);
return encodeSCIMException(badRequestException);
}
Aggregations