Package org.apache.ambari.server.bootstrap

Examples of org.apache.ambari.server.bootstrap.BootStrapStatus


  @GET
  @Path("/{requestId}")
  @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
  public BootStrapStatus getBootStrapStatus(@PathParam("requestId")
    long requestId, @Context UriInfo info) {
    BootStrapStatus status = bsImpl.getStatus(requestId);
    if (status == null)
      throw new WebApplicationException(Response.Status.NO_CONTENT);
    return status;
  }
View Full Code Here

TOP

Related Classes of org.apache.ambari.server.bootstrap.BootStrapStatus

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.