org.apache.wsrp4j.producer.provider
Interface PortletInvoker

All Known Implementing Classes:
PortletInvokerImpl

public interface PortletInvoker

Specifies the interface to the markup generating component. The methods are called during a WSRP markup request

Version:
$Id: PortletInvoker.java,v 1.8 2005/08/12 12:56:53 cziegeler Exp $

Method Summary
 oasis.names.tc.wsrp.v1.types.MarkupResponse invokeGetMarkup(oasis.names.tc.wsrp.v1.types.GetMarkup request)
          Generate the WSRP MarkupResponse for a given MarkupRequest
 oasis.names.tc.wsrp.v1.types.BlockingInteractionResponse invokePerformBlockingInteraction(oasis.names.tc.wsrp.v1.types.PerformBlockingInteraction request)
          Invoke a portlet action for a given WSRP action request
 

Method Detail

invokeGetMarkup

public oasis.names.tc.wsrp.v1.types.MarkupResponse invokeGetMarkup(oasis.names.tc.wsrp.v1.types.GetMarkup request)
                                                            throws WSRPException
Generate the WSRP MarkupResponse for a given MarkupRequest

Parameters:
request - GetMarkup WSRP markup request
Returns:
MarkupResponse
Throws:
WSRPException

invokePerformBlockingInteraction

public oasis.names.tc.wsrp.v1.types.BlockingInteractionResponse invokePerformBlockingInteraction(oasis.names.tc.wsrp.v1.types.PerformBlockingInteraction request)
                                                                                          throws WSRPException
Invoke a portlet action for a given WSRP action request

Parameters:
request - WSRP blocking interaction request
Returns:
BlockingInteractionResponse
Throws:
WSRPException


--