Package lumis.portal.url
Interface IRequestedURI
-
public interface IRequestedURI
Represents a requested URI for the portal.- Since:
- 8.0.0
- Version:
- $Revision: 19766 $ $Date: 2017-01-05 18:35:09 -0200 (Thu, 05 Jan 2017) $
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IRequestedURI.RequestProcessType
Types of processing required for this requested URI.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPath()
Returns the path component of this URI, starting with '/' and relative to the web application root.String
getQueryString()
Returns the query string component of this URI.IRequestedURI.RequestProcessType
getRequestProcessType()
Returns the type of process required for this request.
-
-
-
Method Detail
-
getRequestProcessType
IRequestedURI.RequestProcessType getRequestProcessType()
Returns the type of process required for this request.- Returns:
- the type of process required for this request.
- Since:
- 8.0.0
-
getPath
String getPath()
Returns the path component of this URI, starting with '/' and relative to the web application root.- Returns:
- the path.
- Since:
- 10.0.0
-
getQueryString
String getQueryString()
Returns the query string component of this URI.- Returns:
- the query string, or
null
if this URI does not have a query string. - Since:
- 10.0.0
-
-