Package org.apache.hadoop.chukwa.datastore

Examples of org.apache.hadoop.chukwa.datastore.WidgetStore


 
  @PUT
  @Consumes("application/json")
  public ReturnCodeBean saveWidget(WidgetBean widget) {
    try {
      WidgetStore ws = new WidgetStore();
      ws.set(widget);
    } catch(Exception e) {
      throw new WebApplicationException(Response.status(Response.Status.NOT_FOUND)
          .entity("Widget save failed.").build());
    }
    return new ReturnCodeBean(ReturnCodeBean.SUCCESS,"Saved");
View Full Code Here

TOP

Related Classes of org.apache.hadoop.chukwa.datastore.WidgetStore

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.