org.apache.tapestry5
Interface Link

All Known Implementing Classes:
LinkImpl

public interface Link

A link is the Tapestry representation of a URL or URI that triggers dynamic behavior. This link is in three parts: a path portion, an optional anchor, and a set of query parameters. A request for a link will ultimately be recognized by a Dispatcher.

Query parameter values are kept separate from the path portion to support encoding those values into hidden form fields (where appropriate).


Method Summary
 void addParameter(String parameterName, String value)
          Adds a parameter value.
 Link addParameterValue(String parameterName, Object value)
          Adds a parameter value as a value object; the value object is converted to a string via ContextPathEncoder.encodeValue(Object) and the result is added via addParameter(String, String).
 Link copyWithBasePath(String basePath)
          Creates a copy of this link that has the same parameters, anchor, and other attributes, but a different base path.
 String getAnchor()
          Returns the link anchor.
 String getBasePath()
          Returns the completely unadorned base path.
 List<String> getParameterNames()
          Returns the names of any additional query parameters for the URI.
 String getParameterValue(String name)
          Returns the value of a specifically named query parameter, or null if no such query parameter is stored in the link.
 String[] getParameterValues(String parameterName)
          Returns the parameter values for the given name.
 LinkSecurity getSecurity()
          Returns the current security for this link, which reflects whether the targetted page is itself secure or insecure.
 void removeParameter(String parameterName)
          Removes a parameter value, which is occasionally useful when transforming a parameter into a portion of the path.
 void setAnchor(String anchor)
          Sets the link anchor.
 void setSecurity(LinkSecurity newSecurity)
          Changes the link's security, which can be useful to force a link to be either secure or insecure when normally it might not be.
 String toAbsoluteURI()
          Returns the absolute URL, which includes the scheme, hostname and possibly port (as per BaseURLSource.getBaseURL(boolean)).
 String toAbsoluteURI(boolean secure)
          Returns either the secure or insecure URL, with complete scheme, hostname and possibly port (as per BaseURLSource.getBaseURL(boolean)).
 String toRedirectURI()
          Returns the link as a redirect URI.
 String toURI()
          Returns the URI portion of the link.
 

Method Detail

getParameterNames

List<String> getParameterNames()
Returns the names of any additional query parameters for the URI. Query parameters store less regular or less often used values that can not be expressed in the path. They also are used to store, or link to, persistent state.

Returns:
list of query parameter names, is alphabetical order

getParameterValue

String getParameterValue(String name)
Returns the value of a specifically named query parameter, or null if no such query parameter is stored in the link.

Use this method only when you are sure the parameter has only one value. If the parameter might have more than one value, use getParameterValues(java.lang.String).

If you use this method with a multivalued parameter, the value returned is equal to the first value in the array returned by getParameterValues.

Returns:
a string representing the single value of the named parameter

addParameter

void addParameter(String parameterName,
                  String value)
Adds a parameter value. The value will be added, as is, to the URL. In many cases, the value should be URL encoded via URLCodec.

Parameters:
parameterName - the name of the parameter to store
value - the value to store, a null or blank value is allowed (as of Tapestry 5.3)

addParameterValue

Link addParameterValue(String parameterName,
                       Object value)
Adds a parameter value as a value object; the value object is converted to a string via ContextPathEncoder.encodeValue(Object) and the result is added via addParameter(String, String). The Link object is returned for further configuration.

Since:
5.2.2

removeParameter

void removeParameter(String parameterName)
Removes a parameter value, which is occasionally useful when transforming a parameter into a portion of the path.

Since:
5.2.0

getBasePath

String getBasePath()
Returns the completely unadorned base path. Other methods (such as toURI()), may append an anchor or query parameters.

Since:
5.2.0

copyWithBasePath

Link copyWithBasePath(String basePath)
Creates a copy of this link that has the same parameters, anchor, and other attributes, but a different base path.

Since:
5.2.0

toURI

String toURI()
Returns the URI portion of the link. When the link is created for a form, this will not include query parameters. This is the same value returned from toString().

Returns:
the URI, ready to be added as an element attribute

toRedirectURI

String toRedirectURI()
Returns the link as a redirect URI. The URI includes any query parameters.


getAnchor

String getAnchor()
Returns the link anchor. If this link does not have an anchor, this method returns null.

Returns:
the link anchor

setAnchor

void setAnchor(String anchor)
Sets the link anchor. Null and empty anchors will be ignored when building the link URI.

Parameters:
anchor - the link anchor

toAbsoluteURI

String toAbsoluteURI()
Returns the absolute URL, which includes the scheme, hostname and possibly port (as per BaseURLSource.getBaseURL(boolean)). By default, the scheme is chosen to match the current requests security.

Note: the semantics of this method changed between Tapestry 5.1 and 5.2. Most code should use toString() or toURI() (which are equivalent) instead.

Returns:
the complete, qualified URL, including query parameters.

toAbsoluteURI

String toAbsoluteURI(boolean secure)
Returns either the secure or insecure URL, with complete scheme, hostname and possibly port (as per BaseURLSource.getBaseURL(boolean)).

Returns:
the complete, qualified URL, including query parameters.
Since:
5.2.2

setSecurity

void setSecurity(LinkSecurity newSecurity)
Changes the link's security, which can be useful to force a link to be either secure or insecure when normally it might not be.

Parameters:
newSecurity - new security value, not null, typically LinkSecurity.FORCE_SECURE or LinkSecurity.FORCE_INSECURE
Since:
5.3

getSecurity

LinkSecurity getSecurity()
Returns the current security for this link, which reflects whether the targetted page is itself secure or insecure.

Since:
5.3

getParameterValues

String[] getParameterValues(String parameterName)
Returns the parameter values for the given name. Returns null if no such parameter is stored in the link.



Copyright © 2003-2012 The Apache Software Foundation.