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

Examples of org.openhab.io.rest.internal.resources.beans.GroupItemBean


    public static ItemBean createItemBean(Item item, boolean drillDown, String uriPath) {
      ItemBean bean;
      if(item instanceof GroupItem && drillDown) {
        GroupItem groupItem = (GroupItem) item;
        GroupItemBean groupBean = new GroupItemBean();
        Collection<ItemBean> members = new HashSet<ItemBean>();
        for(Item member : groupItem.getMembers()) {
          members.add(createItemBean(member, false, uriPath));
        }
        groupBean.members = members.toArray(new ItemBean[members.size()]);
View Full Code Here

TOP

Related Classes of org.openhab.io.rest.internal.resources.beans.GroupItemBean

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.