+

Search Tips   |   Advanced Search

 PREV CLASS   NEXT CLASS
Tree 
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD

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
           
 
Method Summary
 ContentMappingModelProvider getContentMappingModelProvider(javax.portlet.PortletRequest request, javax.portlet.PortletResponse response)
          Return the ContentMappingModelProvider.
 

Field Detail

JNDI_NAME

static final java.lang.String JNDI_NAME
See Also:
Constant Field Values
Method Detail

getContentMappingModelProvider

ContentMappingModelProvider getContentMappingModelProvider(javax.portlet.PortletRequest request,
                                                           javax.portlet.PortletResponse response)
Returns the ContentMappingModelProvider.

Returns:
 PREV CLASS   NEXT CLASS
Tree 
SUMMARY: NESTED | FIELD | CONSTR | METHOD DETAIL: FIELD | CONSTR | METHOD