| java.lang.Object com.flexive.faces.URIRouteCollection
URIRouteCollection | public class URIRouteCollection (Code) | | author: Daniel Lichtenberger (daniel.lichtenberger@flexive.com), UCS - unique computing solutions gmbh (http://www.ucs.at) version: $Rev: 1 $ |
URIRouteCollection | public URIRouteCollection(List<T> routes)(Code) | | |
findForTarget | public T findForTarget(String targetUri)(Code) | | Returns a route for the given target URI.
Parameters: targetUri - the target URI to be matched a route for the given target URI, or null if none exists. |
findForUri | public T findForUri(String uri)(Code) | | Returns a route for the given external URI.
Parameters: uri - the external URI to be matched a route for the given external URI, or null if none exists. |
getMatcher | public URIMatcher getMatcher(String uri)(Code) | | Returns a matcher for the given URI, or null if no matcher was found.
Parameters: uri - the URI to be matched a matcher for the given URI, or null if no matcher was found. |
getRoutes | public Collection<T> getRoutes()(Code) | | Returns all available routes.
all available routes. |
|
|