Package org.openhab.io.rest.internal.resources.beans

Examples of org.openhab.io.rest.internal.resources.beans.RootBean$MapEntry


      return Response.notAcceptable(null).build();
      }
    }

  private RootBean getRootBean() {
    RootBean bean = new RootBean();
     
      bean.links.put("items", uriInfo.getBaseUriBuilder().path(ItemResource.PATH_ITEMS).build().toASCIIString());
      bean.links.put("sitemaps", uriInfo.getBaseUriBuilder().path(SitemapResource.PATH_SITEMAPS).build().toASCIIString());
     
      return bean;
View Full Code Here

TOP

Related Classes of org.openhab.io.rest.internal.resources.beans.RootBean$MapEntry

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.