grails.web.mapping.UrlMappingParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grails-web-url-mappings Show documentation
Show all versions of grails-web-url-mappings Show documentation
Grails Web Application Framework
The newest version!
/*
* Copyright 2004-2005 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package grails.web.mapping;
/**
* Parses a Grails URL mapping into a UrlMappingData object that holds various information about the mapping
*
* A Grails URL pattern is not a regex, but is an extension to the form defined by Apache Ant and used by
* Spring AntPathMatcher. Unlike regular Ant paths Grails URL patterns allow for capturing groups in the form:
*
* /blog/(*)/**
*
* The parenthesis define a capturing group. This implementation transforms regular Ant paths into regular expressions
* that are able to use capturing groups
*
* @author Graeme Rocher
* @since 0.5
*/
public interface UrlMappingParser {
/**
* Parses the given URI pattern into a UrlMappingData instance
*
* @param url The URL pattern to parse
* @return The UrlMappingData instance
*/
UrlMappingData parse(String url);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy