Package org.jboss.portal.portlet.state

Examples of org.jboss.portal.portlet.state.SimplePropertyMap


      if (propertyMap == null)
      {
         throw new IllegalArgumentException("No null value map accepted");
      }
      String id = Integer.toString(counter++);
      PortletStateContext state = new PortletStateContextImpl(id, portletId, new SimplePropertyMap(propertyMap));
      store.put(id, state);
      return id;
   }
View Full Code Here


   }

   public String cloneState(String stateId) throws IllegalArgumentException, NoSuchStateException, InvalidStateIdException
   {
      PortletState state = getState(stateId);
      return createState(state.getPortletId(), new SimplePropertyMap(state.getProperties()));
   }
View Full Code Here

TOP

Related Classes of org.jboss.portal.portlet.state.SimplePropertyMap

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.