Package com.webmethods.caf.portlet
Interface IPortletURLFactory
- All Known Implementing Classes:
PortletURLFactory
public interface IPortletURLFactory
Interface for OSGi services that can produce a portlet URL for
a specific context
-
Method Summary
Modifier and TypeMethodDescriptioncreateActionUrl
(Object context) Create an action urlcreateRenderUrl
(Object context) Create a render url
-
Method Details
-
createRenderUrl
Create a render url- Parameters:
context
- the context to pass to the factory (typically the FacesContext object)- Returns:
- the url or null if the context is not understood
- Throws:
Exception
- if the context was understood but the request could not be completed
-
createActionUrl
Create an action url- Parameters:
context
- the context to pass to the factory (typically the FacesContext object)- Returns:
- the url or null if the context is not understood
- Throws:
Exception
- if the context was understood but the request could not be completed
-