com.liferay.portal.model.PortletApp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of portal-service Show documentation
Show all versions of portal-service Show documentation
Contains interfaces for the portal services. Interfaces are only loaded by the global class loader and are shared by all plugins.
/**
* Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.portal.model;
import com.liferay.portal.kernel.xml.QName;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
import java.util.Properties;
import java.util.Set;
/**
* @author Brian Wing Shun Chan
*/
public interface PortletApp extends Serializable {
public void addEventDefinition(EventDefinition eventDefinition);
public void addPortlet(Portlet portlet);
public void addPortletFilter(PortletFilter portletFilter);
public void addPortletURLListener(PortletURLListener portletURLListener);
public void addPublicRenderParameter(
PublicRenderParameter publicRenderParameter);
public void addPublicRenderParameter(String identifier, QName qName);
public void addServletURLPatterns(Set servletURLPatterns);
public Map getContainerRuntimeOptions();
public String getContextPath();
public Map getCustomUserAttributes();
public String getDefaultNamespace();
public Set getEventDefinitions();
public PortletFilter getPortletFilter(String filterName);
public Set getPortletFilters();
public List getPortlets();
public PortletURLListener getPortletURLListener(String listenerClass);
public Set getPortletURLListeners();
public PublicRenderParameter getPublicRenderParameter(String identifier);
public String getServletContextName();
public Set getServletURLPatterns();
public SpriteImage getSpriteImage(String fileName);
public Set getUserAttributes();
public boolean isWARFile();
public void setDefaultNamespace(String defaultNamespace);
public void setSpriteImages(String spriteFileName, Properties properties);
public void setWARFile(boolean warFile);
}