Interface InsufficientScopeError
- All Superinterfaces:
ErrorObject
This error occurs when your API Client does not have the OAuth scope required for the endpoint. Use an API Client with the required permissions for this endpoint instead.
Example to create an instance using the builder pattern
InsufficientScopeError insufficientScopeError = InsufficientScopeError.builder()
.message("{message}")
.build()
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
discriminator value for InsufficientScopeError -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for InsufficientScopeErrorbuilder
(InsufficientScopeError template) create builder for InsufficientScopeError instancestatic InsufficientScopeError
deepCopy
(InsufficientScopeError template) factory method to create a deep copy of InsufficientScopeError@NotNull String
getCode()
Error identifier.@NotNull String
"Insufficient scope.
static InsufficientScopeError
of()
factory methodstatic InsufficientScopeError
of
(InsufficientScopeError template) factory method to create a shallow copy InsufficientScopeErrorvoid
setMessage
(String message) "Insufficient scope.
static com.fasterxml.jackson.core.type.TypeReference<InsufficientScopeError>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.error.ErrorObject
setValue, values, withErrorObject
-
Field Details
-
INSUFFICIENT_SCOPE
discriminator value for InsufficientScopeError- See Also:
-
-
Method Details
-
getCode
Description copied from interface:ErrorObject
Error identifier.
- Specified by:
getCode
in interfaceErrorObject
- Returns:
- code
-
getMessage
"Insufficient scope. One of the following scopes is missing:"
- Specified by:
getMessage
in interfaceErrorObject
- Returns:
- message
-
setMessage
"Insufficient scope. One of the following scopes is missing:"
- Specified by:
setMessage
in interfaceErrorObject
- Parameters:
message
- value to be set
-
of
factory method- Returns:
- instance of InsufficientScopeError
-
of
factory method to create a shallow copy InsufficientScopeError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of InsufficientScopeError- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for InsufficientScopeError- Returns:
- builder
-
builder
create builder for InsufficientScopeError instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withInsufficientScopeError
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-