Lines Matching refs:request

62  * A simple container to lazy initialize common vars wrt. a single request.
70 * this class a bean with request scope ;-)). Furthermore it helps to keep the
71 * pages (how content gets generated) consistent and to document the request
75 * no method of this class changes neither the request nor the response.
135 * Get all data required to create a diff view wrt. to this request in one go.
262 * Get the diff display type to use wrt. the request parameter {@code format}.
263 * @return {@link DiffType#SIDEBYSIDE} if the request contains no such parameter
276 * @return {@code true} if a request parameter {@code full} with the
285 * Check, whether the request contains minimal information required to
292 * string which contains the URI encoded redirect path if the request
301 // (1) if it is a history request, the requested resource does not need to
396 * Get all RSS related directories from the request using its {@code also}
417 * Get the int value of the given request parameter.
442 * the {@code start} request parameter.
452 * {@code n} request parameter.
462 * Get sort orders from the request parameter {@code sort} and if this list
465 * the same order supplied by the request parameter or cookie(s).
489 * Get a reference to the {@code QueryBuilder} wrt. to the current request
547 * Get the definition tag for the request related file or directory.
571 * Get the revision parameter {@code r} from the request.
583 * Check, whether the request related resource has history information.
704 * Get the document hash provided by the request parameter {@code h}.
705 * @return {@code null} if the request does not contain such a parameter,
713 * Get a reference to a set of requested projects via request parameter
726 * matter, what the request actually says). Otherwise</li>
727 * <li>If the request parameter {@code project} contains any available
730 * <li>If the request has a cookie with the name {@code OpenGrokProject}
799 * @param paramName the name of the request parameter, which possibly
912 * Get the prefix for the related request.
962 * Get the on disk file to the request related file or directory.
984 * Get the canonical on disk path to the request related file or directory
1018 * Check, whether the related request resource matches a valid file or
1033 * Check, whether the request related path represents a directory.
1035 * @return {@code true} if directory related request
1111 * Get the path the request should be redirected (if any).
1176 * the query implied by the related request parameters and cookies.
1213 * Get the config wrt. the given request. If there is none yet, a new config
1214 * gets created, attached to the request and returned.
1217 * @param request the request to use to initialize the config parameters.
1218 * @return always the same none-{@code null} config for a given request.
1222 public static PageConfig get(HttpServletRequest request) {
1223 Object cfg = request.getAttribute(ATTR_NAME);
1227 PageConfig pcfg = new PageConfig(request);
1228 request.setAttribute(ATTR_NAME, pcfg);
1241 * the given request.
1242 * @param sr request to check, cleanup. Ignored if {@code null}.