| org.apache.pluto.spi.ResourceURLProvider
All known Subclasses: org.apache.pluto.driver.services.container.ResourceURLProviderImpl,
ResourceURLProvider | public interface ResourceURLProvider (Code) | | version: 1.0 |
Method Summary | |
public void | setAbsoluteURL(String path) Sets the absolute URL to be returned by the provider. | public void | setFullPath(String path) Sets a full path URI including the context root. | public String | toString() Returns a url to a resource as absolute URL starting with protocol so
that it can be accessed by a browser. |
setAbsoluteURL | public void setAbsoluteURL(String path)(Code) | | Sets the absolute URL to be returned by the provider. E.g.
http://host/wps/portal/hello.gif
Parameters: path - the new absolute url |
setFullPath | public void setFullPath(String path)(Code) | | Sets a full path URI including the context root. E.g.
/wps/portal/hello.gif
Parameters: path - the new absolute url |
toString | public String toString()(Code) | | Returns a url to a resource as absolute URL starting with protocol so
that it can be accessed by a browser.
the URL as string |
|
|