Package org.apache.tapestry5.services
Class LibraryMapping
- java.lang.Object
-
- org.apache.tapestry5.services.LibraryMapping
-
public final class LibraryMapping extends Object
Used to configure theComponentClassResolver
, to allow it to map library names to library root packages (the application namespace is a special case of this). In each case, a prefix on the path is mapped to a package. The root package name should have a number of sub-packages:- pages
- contains named pages
- components
- contains components
- mixins
- contains component mixins
- base
- contains base classes
- See Also:
ComponentLibraryInfo
-
-
Field Summary
Fields Modifier and Type Field Description String
libraryName
String
rootPackage
-
Constructor Summary
Constructors Constructor Description LibraryMapping(String libraryName, String rootPackage)
Identifies the root package of a library.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getPathPrefix()
Deprecated.In 5.4, uselibraryName
instead.String
getRootPackage()
String
toString()
-
-
-
Field Detail
-
libraryName
public final String libraryName
-
rootPackage
public final String rootPackage
-
-
Constructor Detail
-
LibraryMapping
public LibraryMapping(String libraryName, String rootPackage)
Identifies the root package of a library. The application has uses the library name "" (the empty string). The special library "core" is all the built-in components. The library name is sometimes referred to as the "path prefix" or the "virtual folder name". This is for historical reasons, as the concept of a library and how it was defined and managed evolved from release to release. The library name should be alpha numeric, and directly encodable into a URL. It may contain slashes (though this is not used often), but may not start or end with one. Note that it is allowed to contribute multiple LibraryMappings with the library name to theComponentClassResolver
, and the results are merged: the single library will have multiple root packages. Be careful that none of the root packages overlap!- Parameters:
libraryName
- the unique identifier for the library.rootPackage
- the root package to search for classes; sub-packages will include ".pages", ".components", etc.
-
-
Method Detail
-
getPathPrefix
public String getPathPrefix()
Deprecated.In 5.4, uselibraryName
instead.Returns the library name; the method is oddly named for historical reasons. The library name is sometimes referred to as the virtual folder name.
-
getRootPackage
public String getRootPackage()
-
-