PREV CLASS
NEXT CLASS
com.ibm.portal.services.contentmapping.model
Interface PortletContentMappingModelHome
- All Superinterfaces:
- PortletService
-
public interface PortletContentMappingModelHome
- extends PortletService
* The following sample shows you how to perform the JNDI lookup
PortletServiceHome psh;
javax.naming.Context ctx = new javax.naming.InitialContext();
try { psh = (PortletServiceHome)
ctx.lookup(com.ibm.portal.services.contentmapping.model.PortletContentMappingModelHome.JNDI_NAME);
} catch(javax.naming.NameNotFoundException ex) { ... error handling ...
}
...
// use the service
PortletContentMappingModelHome myHome = (PortletContentMappingModelHome) psh.getPortletService(PortletContentMappingModelHome.class);
- Since:
- 8.0.0.0
- See Also:
- ContentMappingModel,
ContentMappingInfo
Field Summary
|
static java.lang.String |
JNDI_NAME
|
JNDI_NAME
static final java.lang.String JNDI_NAME
- See Also:
- Constant Field Values
getContentMappingModelProvider
ContentMappingModelProvider getContentMappingModelProvider(javax.portlet.PortletRequest request,
javax.portlet.PortletResponse response)
- Returns the ContentMappingModelProvider.
- Returns:
PREV CLASS
NEXT CLASS