| org.apache.wsrp4j.consumer.URLGenerator
All known Subclasses: com.liferay.portlet.wsrp.URLGeneratorImpl,
URLGenerator | public interface URLGenerator (Code) | | This interface provides methods to query the consumer's urls.
These methods could be used to implement consumer url rewriting.
author: Stefan Behl |
Method Summary | |
public String | getBlockingActionURL(Map params) Creates a URL pointing to the consumer,triggering a performBlockingInteraction call. | public String | getNamespacedToken(String token) Creates a 'url' that the consumer can use to namespace tokens. | public String | getRenderURL(Map params) Creates a URL pointing to the consumer,triggering a getMarkup call. | public String | getResourceURL(Map params) Creates a URL pointing to the consumer,triggering the consumer
to fetch a certain resource
Parameters: params - A map with all parameters which should be appendedto the URL. |
getBlockingActionURL | public String getBlockingActionURL(Map params)(Code) | | Creates a URL pointing to the consumer,triggering a performBlockingInteraction call.
Parameters: params - A map with all parameters which should be appendedto the URL. a blockingInteraction URL |
getNamespacedToken | public String getNamespacedToken(String token)(Code) | | Creates a 'url' that the consumer can use to namespace tokens.
a prefix which ca nbe used to namespace tokens. |
getRenderURL | public String getRenderURL(Map params)(Code) | | Creates a URL pointing to the consumer,triggering a getMarkup call.
Parameters: params - A map with all parameters which should be appendedto the URL. a getMarkup URL |
getResourceURL | public String getResourceURL(Map params)(Code) | | Creates a URL pointing to the consumer,triggering the consumer
to fetch a certain resource
Parameters: params - A map with all parameters which should be appendedto the URL. a resource URL |
|
|