
org.jboss.portletbridge.BridgeConfig Maven / Gradle / Ivy
package org.jboss.portletbridge;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.faces.lifecycle.Lifecycle;
import javax.portlet.PortletConfig;
public interface BridgeConfig {
/**
* @return the portletConfig
*/
public abstract PortletConfig getPortletConfig();
public abstract String getInitParameter(String name);
/**
* @return the facesServletMappings
*/
public abstract List getFacesServletMappings();
/**
* @return the excludedAttributes
*/
public abstract Set getExcludedAttributes();
/**
* @return the portletName
*/
public abstract String getPortletName();
/**
* @return the preserveActionParams
*/
public abstract boolean isPreserveActionParams();
/**
* @return the defaultViewIdMap
*/
public abstract Map getDefaultViewIdMap();
public abstract Map, String> getErrorPages();
public abstract Lifecycle getFacesLifecycle();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy