Package org.exoplatform.portal.pom.data

Examples of org.exoplatform.portal.pom.data.ApplicationData


        if (workspaceObject instanceof UIWindow) {
            UIWindow application = (UIWindow) workspaceObject;
            Mapper mapper = new Mapper(session);

            ApplicationData data = mapper.load(application);
            return data;
        }
        throw new NoSuchDataException("Could not load the application data specified by the ID: " + applicationStorageId);
    }
View Full Code Here


               throw new AssertionError();
         }
      }
      else if (data instanceof ApplicationData)
      {
         ApplicationData applicationData = (ApplicationData)data;
         ApplicationType type = applicationData.getType();
         if (ApplicationType.PORTLET == type)
         {
            return Application.createPortletApplication((ApplicationData<Portlet>)applicationData);
         }
         else if (ApplicationType.GADGET == type)
View Full Code Here

                    return new SiteBody(data.getStorageId());
                default:
                    throw new AssertionError();
            }
        } else if (data instanceof ApplicationData) {
            ApplicationData applicationData = (ApplicationData) data;
            ApplicationType type = applicationData.getType();
            if (ApplicationType.PORTLET == type) {
                return Application.createPortletApplication((ApplicationData<Portlet>) applicationData);
            } else if (ApplicationType.GADGET == type) {
                return Application.createGadgetApplication((ApplicationData<Gadget>) applicationData);
            } else if (ApplicationType.WSRP_PORTLET == type) {
View Full Code Here

        if (workspaceObject instanceof UIWindow) {
            UIWindow application = (UIWindow) workspaceObject;
            Mapper mapper = new Mapper(session);

            ApplicationData data = mapper.load(application);
            return data;
        }
        throw new NoSuchDataException("Could not load the application data specified by the ID: " + applicationStorageId);
    }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.pom.data.ApplicationData

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.