grails.web.mapping.UrlCreator 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;
import java.util.Map;
/**
* Creates URL patterns as Strings. A UrlCreator is passed is a set of parameter values and
* produces a valid relative URI.
*
* @author Graeme Rocher
* @since 0.5.5
*/
@SuppressWarnings("rawtypes")
public interface UrlCreator {
/**
* Creates a URL for the given parameter values
*
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
*
* @return Returns the created URL for the given parameter values
*/
String createURL(Map parameterValues, String encoding);
/**
* Creates a URL for the given parameter values
*
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @param fragment The URL fragment to be appended to the URL following a #
*
* @return Returns the created URL for the given parameter values
*/
String createURL(Map parameterValues, String encoding, String fragment);
/**
* Creates a URL for the given parameters values, controller and action names
*
* @param controller The controller name
* @param action The action name
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createURL(String controller, String action, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names
*
* @param controller The controller name
* @param action The action name
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createURL(String controller, String action, String pluginName, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names
*
* @param controller The controller name
* @param action The action name
* @param namespace The controller namespace
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createURL(String controller, String action, String namespace, String pluginName, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names without the context path information
*
* @param controller The controller name
* @param action The action name
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createRelativeURL(String controller, String action, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names without the context path information
*
* @param controller The controller name
* @param action The action name
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createRelativeURL(String controller, String action, String pluginName, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names without the context path information
*
* @param controller The controller name
* @param action The action name
* @param namespace The controller namespace
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @return The created URL for the given arguments
*/
String createRelativeURL(String controller, String action, String namespace, String pluginName, Map parameterValues, String encoding);
/**
* Creates a URL for the given parameters values, controller and action names without the context path information
*
* @param controller The controller name
* @param action The action name
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @param fragment The fragment to append to the end
* @return The created URL for the given arguments
*/
String createRelativeURL(String controller, String action, Map parameterValues, String encoding, String fragment);
/**
* Creates a URL for the given parameters values, controller and action names without the context path information
*
* @param controller The controller name
* @param action The action name
* @param namespace The controller namespace
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @param fragment The fragment to append to the end
* @return The created URL for the given arguments
*/
String createRelativeURL(String controller, String action, String namespace, String pluginName, Map parameterValues, String encoding, String fragment);
/**
* Creates a URL for the given parameters values, controller and action names
*
* @param controller The controller name
* @param action The action name
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @param fragment The URL fragment to be appended to the URL following a #
* @return The created URL for the given arguments
*/
String createURL(String controller, String action, Map parameterValues, String encoding, String fragment);
/**
* Creates a URL for the given parameters values, controller and action names
*
* @param controller The controller name
* @param action The action name
* @param namespace The controller namespace
* @param pluginName The name of the plugin which provides the controller
* @param parameterValues The parameter values
* @param encoding The encoding to use for parameters
* @param fragment The URL fragment to be appended to the URL following a #
* @return The created URL for the given arguments
*/
String createURL(String controller, String action, String namespace, String pluginName, Map parameterValues, String encoding, String fragment);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy