Class ClasspathAssetAliasManagerImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.services.ClasspathAssetAliasManagerImpl
-
- All Implemented Interfaces:
ClasspathAssetAliasManager
public class ClasspathAssetAliasManagerImpl extends Object implements ClasspathAssetAliasManager
-
-
Constructor Summary
Constructors Constructor Description ClasspathAssetAliasManagerImpl(Map<String,String> configuration)
Configuration is a map of aliases (short names) to complete names.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AssetAlias
extractAssetAlias(Resource resource)
Takes a classpath resource and determines the proper alias for it based on the mappings contributed to the service.Map<String,String>
getMappings()
Returns the mappings used by the service: the keys are the folder aliases (i.e, "corelib") and the values are the corresponding paths (i.e., "org/apache/tapestry5/corelib").
-
-
-
Constructor Detail
-
ClasspathAssetAliasManagerImpl
public ClasspathAssetAliasManagerImpl(Map<String,String> configuration)
Configuration is a map of aliases (short names) to complete names. Keys and values must not start or end with a slash, but may contain them.
-
-
Method Detail
-
extractAssetAlias
public AssetAlias extractAssetAlias(Resource resource)
Description copied from interface:ClasspathAssetAliasManager
Takes a classpath resource and determines the proper alias for it based on the mappings contributed to the service.- Specified by:
extractAssetAlias
in interfaceClasspathAssetAliasManager
- Parameters:
resource
- classpath resource- Returns:
- URL ready to send to the client
-
getMappings
public Map<String,String> getMappings()
Description copied from interface:ClasspathAssetAliasManager
Returns the mappings used by the service: the keys are the folder aliases (i.e, "corelib") and the values are the corresponding paths (i.e., "org/apache/tapestry5/corelib"). This exists primarily so thatClasspathAssetRequestHandler
s can be created automatically for each mapping.- Specified by:
getMappings
in interfaceClasspathAssetAliasManager
-
-