Uses of Class
org.codehaus.plexus.summit.util.UriBuilder

Packages that use UriBuilder
org.codehaus.plexus.summit.pull.tools   
org.codehaus.plexus.summit.util   
 

Uses of UriBuilder in org.codehaus.plexus.summit.pull.tools
 

Subclasses of UriBuilder in org.codehaus.plexus.summit.pull.tools
 class ContentUriBuilder
          Utility class to allow the easy inclusion of images in templates: <img src="$content.getURI("image.jpg")">
 class RelativeTemplateLink
          A customized version of the RelativeDynamicUriBuilder to be used in Templates.
 class TemplateLink
          A customized version of the UriBuilder to be used in Templates.
 class TemplateLinkWithSlash
          This class allows one to specify paths in the setPage method using '/' slash as opposed to the ',' used in TemplateLink.
 

Uses of UriBuilder in org.codehaus.plexus.summit.util
 

Methods in org.codehaus.plexus.summit.util that return UriBuilder
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, java.lang.Object value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, java.lang.String value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, double value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, int value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, long value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(java.lang.String name, boolean value)
          Adds a name=value pair to the path_info string.
 UriBuilder UriBuilder.addPathInfo(RequestParameters pp)
          Adds a name=value pair for every entry in a RequestParameters object to the path_info string.
 UriBuilder UriBuilder.addQueryData(java.lang.String name, java.lang.Object value)
          Adds a name=value pair to the query string.
 UriBuilder UriBuilder.addQueryData(java.lang.String name, java.lang.String value)
          Adds a name=value pair to the query string.
 UriBuilder UriBuilder.addQueryData(java.lang.String name, double value)
          Adds a name=value pair to the query string.
 UriBuilder UriBuilder.addQueryData(java.lang.String name, int value)
          Adds a name=value pair to the query string.
 UriBuilder UriBuilder.addQueryData(java.lang.String name, long value)
          Adds a name=value pair to the query string.
 UriBuilder UriBuilder.addQueryData(RequestParameters pp)
          Adds a name=value pair for every entry in a RequestParameters object to the query string.
 UriBuilder UriBuilder.setAction(java.lang.String action)
          Sets the action= value for this URL.
 UriBuilder UriBuilder.setTarget(java.lang.String template)
          Sets the target = value for this URL.
 UriBuilder UriBuilder.setRedirect(boolean doRedirect)
          Sets whether we want to redirect or not.
 UriBuilder UriBuilder.setRelative(boolean b)
          if true, the scheme, domain, and port will not be included in the String representation of this uri..
 UriBuilder UriBuilder.setEncodeUrl(boolean b)
          Can be used to disable url rewriting.