All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotify.helios.master.http.Responses Maven / Gradle / Ivy

There is a newer version: 0.9.9
Show newest version
/*
 * Copyright (c) 2014 Spotify AB.
 *
 * Licensed 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 com.spotify.helios.master.http;

import javax.ws.rs.WebApplicationException;

import static javax.ws.rs.core.Response.Status.BAD_REQUEST;
import static javax.ws.rs.core.Response.Status.NOT_FOUND;
import static javax.ws.rs.core.Response.Status.FORBIDDEN;
import static javax.ws.rs.core.Response.status;

/**
 * Simpler utility code to signal error conditions from the resource classes.
 */
public class Responses {

  public static WebApplicationException badRequest(final Object entity) {
    return new WebApplicationException(status(BAD_REQUEST).entity(entity).build());
  }

  public static WebApplicationException badRequest() {
    return new WebApplicationException(BAD_REQUEST);
  }

  public static WebApplicationException notFound(final Object entity) {
    return new WebApplicationException(status(NOT_FOUND).entity(entity).build());
  }

  public static WebApplicationException notFound() {
    return new WebApplicationException(NOT_FOUND);
  }

  public static WebApplicationException forbidden(final Object entity) {
    return new WebApplicationException(status(FORBIDDEN).entity(entity).build());
  }

  public static WebApplicationException forbidden() {
    return new WebApplicationException(FORBIDDEN);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy