Package org.apache.ofbiz.base.config
Interface ResourceHandler
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ComponentResourceHandler
,MainResourceHandler
public interface ResourceHandler extends java.io.Serializable
Contains resource information and provides for loading data
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.w3c.dom.Document
getDocument()
java.lang.String
getFullLocation()
java.lang.String
getLoaderName()
java.lang.String
getLocation()
java.io.InputStream
getStream()
java.net.URL
getURL()
boolean
isFileResource()
-
-
-
Method Detail
-
getLoaderName
java.lang.String getLoaderName()
-
getLocation
java.lang.String getLocation()
-
getDocument
org.w3c.dom.Document getDocument() throws GenericConfigException
- Throws:
GenericConfigException
-
getStream
java.io.InputStream getStream() throws GenericConfigException
- Throws:
GenericConfigException
-
getURL
java.net.URL getURL() throws GenericConfigException
- Throws:
GenericConfigException
-
isFileResource
boolean isFileResource() throws GenericConfigException
- Throws:
GenericConfigException
-
getFullLocation
java.lang.String getFullLocation() throws GenericConfigException
- Throws:
GenericConfigException
-
-