com.ibm.portal.ibmportlet.service.model
Interface ContentMetaDataModelProvider

All Superinterfaces:
org.apache.jetspeed.portlet.service.PortletService

Deprecated. since 6.0. Support of the IBM portlet API may be removed in a future release of WebSphere Portal. Use of the Java Portlet API (javax.portlet) is recommended instead.

public interface ContentMetaDataModelProvider
extends org.apache.jetspeed.portlet.service.PortletService

An interface for a provider of content meta data models.

ContentMetaDataModelProvider provider = (ContentMetaDataModelProvider) aPortletContext.getService(com.ibm.portal.ibmportlet.service.model.ContentMetaDataModelProvider.class);
if (provider != null) {
ContentMetaDataModel model = provider.getContentMetaDataModel(aRequest, aResponse);
...
}

Since:
6.1.0.1

Method Summary
 ContentMetaDataModel getContentMetaDataModel(org.apache.jetspeed.portlet.PortletRequest aRequest, org.apache.jetspeed.portlet.PortletResponse aResponse)
          Deprecated. Returns the content meta data model applicable in the current request.
 

Method Detail

getContentMetaDataModel

ContentMetaDataModel getContentMetaDataModel(org.apache.jetspeed.portlet.PortletRequest aRequest,
                                             org.apache.jetspeed.portlet.PortletResponse aResponse)
                                             throws ModelException
Deprecated. 
Returns the content meta data model applicable in the current request.

Parameters:
aRequest - the current request
aResponse - the current response
Returns:
the content meta data model valid in the current request
Throws:
ModelException - in case the model cannot be obtained