Class UrlResourceManager
java.lang.Object
com.aquima.interactions.foundation.io.UrlResourceManager
- All Implemented Interfaces:
IResourceManager
This resource manager implementation uses an URL connection to locate resources.
- Since:
- 6.3
- Author:
- M. Vermeulen
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetResource
(String path) Locates a resource specified by path.String[]
Returns the supported protocol types.
-
Constructor Details
-
UrlResourceManager
public UrlResourceManager()
-
-
Method Details
-
getResource
Description copied from interface:IResourceManager
Locates a resource specified by path. Path may contain a protocol prefix to specify that the resource should be located from a specific resource manager. This method will only return a result when the resource is available. When the resource manager can not locate the requested resource, an UnknownResourceException will be thrown.- Specified by:
getResource
in interfaceIResourceManager
- Parameters:
path
- the path to the resource.- Returns:
- A resource that will exist, exception otherwise.
- Throws:
ResourceException
- When the resource could not be retrieved from the resource manager.
-
getSupportedTypes
Description copied from interface:IResourceManager
Returns the supported protocol types.- Specified by:
getSupportedTypes
in interfaceIResourceManager
- Returns:
- a list of supported types, which should never be null.
-