org.apache.commons.discovery.resource.names
Class DiscoverMappedNames

java.lang.Object
  extended by org.apache.commons.discovery.resource.names.ResourceNameDiscoverImpl
      extended by org.apache.commons.discovery.resource.names.DiscoverMappedNames
All Implemented Interfaces:
ResourceNameDiscover

public class DiscoverMappedNames
extends ResourceNameDiscoverImpl
implements ResourceNameDiscover

Recover resource name from Managed Properties, using OLD property names. This class maintains a mapping between old names and (new) the class names they represent. The discovery mechanism uses the class names as property names.

See Also:
ManagedProperties

Constructor Summary
DiscoverMappedNames()
          Construct a new resource discoverer
 
Method Summary
 ResourceNameIterator findResourceNames(String resourceName)
          Locate names of resources that are bound to resourceName.
 void map(String fromName, String toName)
          Maps a name to another name.
 void map(String fromName, String[] toNames)
          Maps a name to multiple names.
static void setLog(org.apache.commons.logging.Log _log)
          Deprecated. This method is not thread-safe
 
Methods 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 Detail

DiscoverMappedNames

public DiscoverMappedNames()
Construct a new resource discoverer

Method Detail

setLog

@Deprecated
public static void setLog(org.apache.commons.logging.Log _log)
Deprecated. This method is not thread-safe

Sets the Log for this class.

Parameters:
_log - This class Log

map

public void map(String fromName,
                String toName)
Maps a name to another name.

Parameters:
fromName - The name has to be mapped
toName - The mapping target

map

public void map(String fromName,
                String[] toNames)
Maps a name to multiple names.

Parameters:
fromName - The name has to be mapped
toNames - The mapping targets

findResourceNames

public ResourceNameIterator findResourceNames(String resourceName)
Locate names of resources that are bound to resourceName.

Specified by:
findResourceNames in interface ResourceNameDiscover
Specified by:
findResourceNames in class ResourceNameDiscoverImpl
Parameters:
resourceName - The resource name to locate
Returns:
A new ResourceNameIterator


Copyright © 2002-2011 The Apache Software Foundation. All Rights Reserved.