blob: 8b184b2518d38b926927c4f321876998330b7442 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.olingo.server.api;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import org.apache.olingo.commons.api.domain.ODataError;
import org.apache.olingo.commons.api.domain.ODataErrorDetail;
/**
* Server error.
*/
public class ODataServerError extends ODataError {
private Exception exception;
private int statusCode;
private Locale locale;
/**
* Gets the locale.
* @return the locale for the exception message
*/
public Locale getLocale() {
return locale;
}
/**
* Sets the locale.
* @return this for method chaining
*/
public ODataServerError setLocale(Locale locale) {
this.locale = locale;
return this;
}
/**
* Gets the exception.
* @return the exception with its hierarchy
*/
public Exception getException() {
return exception;
}
/**
* Sets the exception.
* @return this for method chaining
*/
public ODataServerError setException(Exception exception) {
this.exception = exception;
return this;
}
/**
* Gets the status code.
* @return the status code which this error results in.
*/
public int getStatusCode() {
return statusCode;
}
/**
* Sets the status code.
* @param statusCode the status code which this error results in
* @return this for method chaining
*/
public ODataServerError setStatusCode(int statusCode) {
this.statusCode = statusCode;
return this;
}
/**
* The value for the code name/value pair is a language-independent string.
* Its value is a service-defined error code. This code serves as a sub-status
* for the HTTP error code specified in the response. MAY be null.
* @return this for method chaining
*/
public ODataServerError setCode(String code) {
super.setCode(code);
return this;
}
/**
* The value for the message name/value pair MUST be a human-readable,
* language-dependent representation of the error. MUST not be null.
* @return this for method chaining
*/
public ODataServerError setMessage(String message) {
super.setMessage(message);
return this;
}
/**
* The value for the target name/value pair is the target of the particular error (for example, the name of the
* property in error). MAY be null.
* @return this for method chaining
*/
public ODataServerError setTarget(String target) {
super.setTarget(target);
return this;
}
/**
* Sets error details.
* @return this for method chaining.
*/
public ODataServerError setDetails(List<ODataErrorDetail> details) {
super.setDetails(details);
return this;
}
/**
* Sets server defined key-value pairs for debug environment only.
* @return this for method chaining.
*/
public ODataServerError setInnerError(Map<String, String> innerError) {
super.setInnerError(innerError);
return this;
}
}