1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the "License"). You may not use this file except
* in compliance with the License.
*
* You can obtain a copy of the license at
* http://www.opensource.org/licenses/cddl1.php
* See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* UriInfo.java
*
* Created on April 13, 2007, 2:55 PM
*
*/
package javax.ws.rs.core;
import java.net.URI;
import java.util.List;
/**
* An injectable interface that provides access to application and request
* URI information. Relative URIs are relative to the base URI of the
* application, see {@link #getBaseUri}.
*
* <p>All methods throw <code>java.lang.IllegalStateException</code>
* if called outside the scope of a request (e.g. from a provider constructor).</p>
*
* @see Context
*/
public interface UriInfo {
/**
* Get the path of the current request relative to the base URI as
* a string. All sequences of escaped octets are decoded, equivalent to
* <code>getPath(true)</code>.
*
* @return the relative URI path
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public String getPath();
/**
* Get the path of the current request relative to the base URI as
* a string.
*
* @param decode controls whether sequences of escaped octets are decoded
* (true) or not (false).
* @return the relative URI path
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public String getPath(boolean decode);
/**
* Get the path of the current request relative to the base URI as a
* list of {@link PathSegment}. This method is useful when the
* path needs to be parsed, particularly when matrix parameters may be
* present in the path. All sequences of escaped octets in path segments
* and matrix parameter values are decoded,
* equivalent to <code>getPathSegments(true)</code>.
* @return an unmodifiable list of {@link PathSegment}. The matrix parameter
* map of each path segment is also unmodifiable.
* @throws java.lang.IllegalStateException if called outside the scope of a request
* @see PathSegment
* @see <a href="http://www.w3.org/DesignIssues/MatrixURIs.html">Matrix URIs</a>
*/
public List<PathSegment> getPathSegments();
/**
* Get the path of the current request relative to the base URI as a
* list of {@link PathSegment}. This method is useful when the
* path needs to be parsed, particularly when matrix parameters may be
* present in the path.
* @param decode controls whether sequences of escaped octets in path segments
* and matrix parameter values are decoded (true) or not (false).
* @return an unmodifiable list of {@link PathSegment}. The matrix parameter
* map of each path segment is also unmodifiable.
* @throws java.lang.IllegalStateException if called outside the scope of a request
* @see PathSegment
* @see <a href="http://www.w3.org/DesignIssues/MatrixURIs.html">Matrix URIs</a>
*/
public List<PathSegment> getPathSegments(boolean decode);
/**
* Get the absolute request URI including any query parameters.
* @return the absolute request URI
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public URI getRequestUri();
/**
* Get the absolute request URI in the form of a UriBuilder.
* @return a UriBuilder initialized with the absolute request URI
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public UriBuilder getRequestUriBuilder();
/**
* Get the absolute path of the request. This includes everything preceding
* the path (host, port etc) but excludes query parameters.
* This is a shortcut for
* <code>uriInfo.getBase().resolve(uriInfo.getPath()).</code>
* @return the absolute path of the request
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public URI getAbsolutePath();
/**
* Get the absolute path of the request in the form of a UriBuilder.
* This includes everything preceding the path (host, port etc) but excludes
* query parameters.
* @return a UriBuilder initialized with the absolute path of the request
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public UriBuilder getAbsolutePathBuilder();
/**
* Get the base URI of the application. URIs of root resource classes
* are all relative to this base URI.
* @return the base URI of the application
*/
public URI getBaseUri();
/**
* Get the base URI of the application in the form of a UriBuilder.
* @return a UriBuilder initialized with the base URI of the application.
*/
public UriBuilder getBaseUriBuilder();
/**
* Get the values of any embedded URI template parameters.
* All sequences of escaped octets are decoded,
* equivalent to <code>getPathParameters(true)</code>.
* @return an unmodifiable map of parameter names and values
* @throws java.lang.IllegalStateException if called outside the scope of a request
* @see javax.ws.rs.Path
* @see javax.ws.rs.PathParam
*/
public MultivaluedMap<String, String> getPathParameters();
/**
* Get the values of any embedded URI template parameters.
*
* @param decode controls whether sequences of escaped octets are decoded
* (true) or not (false).
* @return an unmodifiable map of parameter names and values
* @throws java.lang.IllegalStateException if called outside the scope of a request
* @see javax.ws.rs.Path
* @see javax.ws.rs.PathParam
*/
public MultivaluedMap<String, String> getPathParameters(boolean decode);
/**
* Get the URI query parameters of the current request.
* The map keys are the names of the query parameters with any
* escaped characters decoded.
* All sequences of escaped octets in parameter values are decoded,
* equivalent to <code>getQueryParameters(true)</code>.
* @return an unmodifiable map of query parameter names and values
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public MultivaluedMap<String, String> getQueryParameters();
/**
* Get the URI query parameters of the current request.
* The map keys are the names of the query parameters with any
* escaped characters decoded.
* @param decode controls whether sequences of escaped octets in parameter
* values are decoded (true) or not (false).
* @return an unmodifiable map of query parameter names and values
* @throws java.lang.IllegalStateException if called outside the scope of a request
*/
public MultivaluedMap<String, String> getQueryParameters(boolean decode);
/**
* Get a read-only list of URIs for matched resources. Each entry is a
* relative URI that matched a resource class, a
* sub-resource method or a sub-resource locator. All sequences of escaped
* octets are decoded, equivalent to {@code getMatchedURIs(true)}.
* Entries do not include query parameters but do include matrix parameters
* if present in the request URI. Entries are ordered in reverse request
* URI matching order, with the current resource URI first. E.g. given the
* following resource classes:
*
* <pre>@Path("foo")
*public class FooResource {
* @GET
* public String getFoo() {...}
*
* @Path("bar")
* public BarResource getBarResource() {...}
*}
*
*public class BarResource {
* @GET
* public String getBar() {...}
*}
* </pre>
*
* <p>The values returned by this method based on request uri and where
* the method is called from are:</p>
*
* <table border="1">
* <tr>
* <th>Request</th>
* <th>Called from</th>
* <th>Value(s)</th>
* </tr>
* <tr>
* <td>GET /foo</td>
* <td>FooResource.getFoo</td>
* <td>foo</td>
* </tr>
* <tr>
* <td>GET /foo/bar</td>
* <td>FooResource.getBarResource</td>
* <td>foo/bar, foo</td>
* </tr>
* <tr>
* <td>GET /foo/bar</td>
* <td>BarResource.getBar</td>
* <td>foo/bar, foo</td>
* </tr>
* </table>
*
*
* @return a read-only list of URI paths for matched resources.
*/
public List<String> getMatchedURIs();
/**
* Get a read-only list of URIs for matched resources. Each entry is a
* relative URI that matched a resource class, a sub-resource
* method or a sub-resource locator. Entries do not include query
* parameters but do include matrix parameters if present in the request URI.
* Entries are ordered in reverse request URI matching order, with the
* current resource URI first. See {@link #getMatchedURIs()} for an
* example.
*
* @param decode controls whether sequences of escaped octets are decoded
* (true) or not (false).
* @return a read-only list of URI paths for matched resources.
*/
public List<String> getMatchedURIs(boolean decode);
/**
* Get a read-only list of the currently matched resource class instances.
* Each entry is a resource class instance that matched the request URI
* either directly or via a sub-resource method or a sub-resource locator.
* Entries are ordered according to reverse request URI matching order,
* with the current resource first. E.g. given the following resource
* classes:
*
* <pre>@Path("foo")
*public class FooResource {
* @GET
* public String getFoo() {...}
*
* @Path("bar")
* public BarResource getBarResource() {...}
*}
*
*public class BarResource {
* @GET
* public String getBar() {...}
*}
* </pre>
*
* <p>The values returned by this method based on request uri and where
* the method is called from are:</p>
*
* <table border="1">
* <tr>
* <th>Request</th>
* <th>Called from</th>
* <th>Value(s)</th>
* </tr>
* <tr>
* <td>GET /foo</td>
* <td>FooResource.getFoo</td>
* <td>FooResource</td>
* </tr>
* <tr>
* <td>GET /foo/bar</td>
* <td>FooResource.getBarResource</td>
* <td>FooResource</td>
* </tr>
* <tr>
* <td>GET /foo/bar</td>
* <td>BarResource.getBar</td>
* <td>BarResource, FooResource</td>
* </tr>
* </table>
*
* @return a read-only list of matched resource class instances.
*/
public List<Object> getMatchedResources();
}
|