Class DiscoverNamesInDictionary
java.lang.Object
org.apache.commons.discovery.resource.names.ResourceNameDiscoverImpl
org.apache.commons.discovery.resource.names.DiscoverNamesInDictionary
- All Implemented Interfaces:
ResourceNameDiscover
public class DiscoverNamesInDictionary
extends ResourceNameDiscoverImpl
implements ResourceNameDiscover
Recover resources from a Dictionary. This covers Properties as well,
since
Properties extends Hashtable extends Dictionary
.
The recovered value is expected to be either a String
or a String[]
.-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new resource discoverer with an empty Dictionary.DiscoverNamesInDictionary
(Dictionary<String, String[]> dictionary) Construct a new resource discoverer with the given Dictionary. -
Method Summary
Modifier and TypeMethodDescriptionvoid
addResource
(String resourceName, String resource) Add a resource name to a single name mapping.void
addResource
(String resourceName, String[] resources) Add a resource name to multiple names mapping.findResourceNames
(String resourceName) Locate names of resources that are bound toresourceName
.protected Dictionary
<String, String[]> Returns the current Dictionary for names mapping.void
setDictionary
(Dictionary<String, String[]> table) Specify the Dictionary for names mapping.static void
setLog
(org.apache.commons.logging.Log _log) Deprecated.This method is not thread-safeMethods inherited from class org.apache.commons.discovery.resource.names.ResourceNameDiscoverImpl
findResourceNames
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.commons.discovery.ResourceNameDiscover
findResourceNames
-
Constructor Details
-
DiscoverNamesInDictionary
public DiscoverNamesInDictionary()Construct a new resource discoverer with an empty Dictionary. -
DiscoverNamesInDictionary
Construct a new resource discoverer with the given Dictionary.- Parameters:
dictionary
- The initial Dictionary
-
-
Method Details
-
setLog
Deprecated.This method is not thread-safeSets theLog
for this class.- Parameters:
_log
- This classLog
-
getDictionary
Returns the current Dictionary for names mapping.- Returns:
- The current Dictionary for names mapping
-
setDictionary
Specify the Dictionary for names mapping.- Parameters:
table
- The Dictionary for names mapping
-
addResource
Add a resource name to a single name mapping.- Parameters:
resourceName
- The resource nameresource
- The target name
-
addResource
Add a resource name to multiple names mapping.- Parameters:
resourceName
- The resource nameresources
- The target names
-
findResourceNames
Locate names of resources that are bound toresourceName
.- Specified by:
findResourceNames
in interfaceResourceNameDiscover
- Specified by:
findResourceNames
in classResourceNameDiscoverImpl
- Parameters:
resourceName
- The resource name to locate- Returns:
- A new
ResourceNameIterator
-