X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frestconf%2Fimpl%2FRestconfDocumentedException.java;h=e3e0c3a2bdc49cbf8fca3bb8104e673fa2ea0b2c;hp=0548e95044e081592ef9bb7d49513b8be7ab48bb;hb=refs%2Fchanges%2F27%2F8927%2F3;hpb=cb210bea2ab44aa2922ed86232c9db9a10452fc0 diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfDocumentedException.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfDocumentedException.java index 0548e95044..e3e0c3a2bd 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfDocumentedException.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/restconf/impl/RestconfDocumentedException.java @@ -8,20 +8,17 @@ package org.opendaylight.controller.sal.restconf.impl; +import com.google.common.base.Preconditions; +import com.google.common.collect.ImmutableList; import java.util.List; - import javax.ws.rs.WebApplicationException; import javax.ws.rs.core.Response.Status; - import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorTag; import org.opendaylight.controller.sal.restconf.impl.RestconfError.ErrorType; -import com.google.common.base.Preconditions; -import com.google.common.collect.ImmutableList; - /** - * Unchecked exception to communicate error information, as defined in the ietf restcong draft, - * to be sent to the client. + * Unchecked exception to communicate error information, as defined in the ietf restcong draft, to be sent to the + * client. * * @author Devin Avery * @author Thomas Pantelis @@ -35,70 +32,76 @@ public class RestconfDocumentedException extends WebApplicationException { private final Status status; /** - * Constructs an instance with an error message. The error type defaults to APPLICATION and - * the error tag defaults to OPERATION_FAILED. + * Constructs an instance with an error message. The error type defaults to APPLICATION and the error tag defaults + * to OPERATION_FAILED. * - * @param message A string which provides a plain text string describing the error. + * @param message + * A string which provides a plain text string describing the error. */ - public RestconfDocumentedException( String message ) { - this( message, RestconfError.ErrorType.APPLICATION, RestconfError.ErrorTag.OPERATION_FAILED ); + public RestconfDocumentedException(String message) { + this(message, RestconfError.ErrorType.APPLICATION, RestconfError.ErrorTag.OPERATION_FAILED); } /** * Constructs an instance with an error message, error type, and error tag. * - * @param message A string which provides a plain text string describing the error. - * @param errorType The enumerated type indicating the layer where the error occurred. - * @param errorTag The enumerated tag representing a more specific error cause. + * @param message + * A string which provides a plain text string describing the error. + * @param errorType + * The enumerated type indicating the layer where the error occurred. + * @param errorTag + * The enumerated tag representing a more specific error cause. */ - public RestconfDocumentedException( String message, ErrorType errorType, ErrorTag errorTag ) { - this( null, new RestconfError( errorType, errorTag, message ) ); + public RestconfDocumentedException(String message, ErrorType errorType, ErrorTag errorTag) { + this(null, new RestconfError(errorType, errorTag, message)); } /** - * Constructs an instance with an error message and exception cause. The stack trace of the - * exception is included in the error info. + * Constructs an instance with an error message and exception cause. The stack trace of the exception is included in + * the error info. * - * @param message A string which provides a plain text string describing the error. - * @param cause The underlying exception cause. + * @param message + * A string which provides a plain text string describing the error. + * @param cause + * The underlying exception cause. */ - public RestconfDocumentedException( String message, Throwable cause ) { - this( cause, new RestconfError( RestconfError.ErrorType.APPLICATION, - RestconfError.ErrorTag.OPERATION_FAILED, message, - null, RestconfError.toErrorInfo( cause ) ) ); + public RestconfDocumentedException(String message, Throwable cause) { + this(cause, new RestconfError(RestconfError.ErrorType.APPLICATION, RestconfError.ErrorTag.OPERATION_FAILED, + message, null, RestconfError.toErrorInfo(cause))); } /** * Constructs an instance with the given error. */ - public RestconfDocumentedException( RestconfError error ) { - this( null, error ); + public RestconfDocumentedException(RestconfError error) { + this(null, error); } /** * Constructs an instance with the given errors. */ - public RestconfDocumentedException( List errors ) { - this.errors = ImmutableList.copyOf( errors ); - Preconditions.checkArgument( !this.errors.isEmpty(), "RestconfError list can't be empty" ); + public RestconfDocumentedException(List errors) { + this.errors = ImmutableList.copyOf(errors); + Preconditions.checkArgument(!this.errors.isEmpty(), "RestconfError list can't be empty"); status = null; } /** * Constructs an instance with an HTTP status and no error information. * - * @param status the HTTP status. + * @param status + * the HTTP status. */ - public RestconfDocumentedException( Status status ) { - Preconditions.checkNotNull( status, "Status can't be null" ); + public RestconfDocumentedException(Status status) { + Preconditions.checkNotNull(status, "Status can't be null"); errors = ImmutableList.of(); this.status = status; } - private RestconfDocumentedException( Throwable cause, RestconfError error ) { - super( cause ); - Preconditions.checkNotNull( error, "RestconfError can't be null" ); - errors = ImmutableList.of( error ); + private RestconfDocumentedException(Throwable cause, RestconfError error) { + super(cause); + Preconditions.checkNotNull(error, "RestconfError can't be null"); + errors = ImmutableList.of(error); status = null; } @@ -110,7 +113,6 @@ public class RestconfDocumentedException extends WebApplicationException { return status; } - @Override public String getMessage() { return "errors: " + errors + (status != null ? ", status: " + status : "");