public static interface ClassSource_MappedSimple.SimpleClassProvider
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
Answer a name for this provider.
|
java.util.Collection<java.lang.String> |
getResourceNames()
Answer the resource names of this provider.
|
java.io.InputStream |
openResource(java.lang.String resourceName)
Answer an input stream for a specified resource.
|
java.lang.String getName()
Answer a name for this provider. The name is used logging and is intended to be meaningful and easy to read.
java.util.Collection<java.lang.String> getResourceNames()
Answer the resource names of this provider. No order is presumed for the names, however, this may be supplied by an implementation.
The values must be proper class resource names. Any mapping of the names must be internal to the provider.
java.io.InputStream openResource(java.lang.String resourceName) throws java.io.IOException
Answer an input stream for a specified resource. The path is
expected to be one supplied by getResourceNames()
.
The result input stream must be closed.
resourceName
- The resource to open as an input stream.java.io.IOException
- Thrown if the stream could not be opened.