Java Code Examples for io.gravitee.common.http.HttpStatusCode#FORBIDDEN_403

The following examples show how to use io.gravitee.common.http.HttpStatusCode#FORBIDDEN_403 . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ClientRegistrationForbiddenException.java    From graviteeio-access-management with Apache License 2.0 4 votes vote down vote up
@Override
public int getHttpStatusCode() {
    return HttpStatusCode.FORBIDDEN_403;
}
 
Example 2
Source File: UMAProtectionApiForbiddenException.java    From graviteeio-access-management with Apache License 2.0 4 votes vote down vote up
@Override
public int getHttpStatusCode() {
    return HttpStatusCode.FORBIDDEN_403;
}
 
Example 3
Source File: InsufficientScopeException.java    From graviteeio-access-management with Apache License 2.0 4 votes vote down vote up
@Override
public int getHttpStatusCode() {
    return HttpStatusCode.FORBIDDEN_403;
}
 
Example 4
Source File: ForbiddenAccessException.java    From gravitee-management-rest-api with Apache License 2.0 4 votes vote down vote up
@Override
public int getHttpStatusCode() {
    return HttpStatusCode.FORBIDDEN_403;
}