Home
last modified time | relevance | path

Searched refs:getAttribute (Results 1 – 14 of 14) sorted by relevance

/unit/src/java/nginx/unit/
H A DIncludeRequestWrapper.java29 request_ = (Request) request.getAttribute(Request.BARE); in IncludeRequestWrapper()
32 orig_servlet_path_attr = request_.getAttribute(RequestDispatcher.INCLUDE_SERVLET_PATH); in IncludeRequestWrapper()
33 orig_path_info_attr = request_.getAttribute(RequestDispatcher.INCLUDE_PATH_INFO); in IncludeRequestWrapper()
34 orig_uri_attr = request_.getAttribute(RequestDispatcher.INCLUDE_REQUEST_URI); in IncludeRequestWrapper()
35 orig_context_path_attr = request_.getAttribute(RequestDispatcher.INCLUDE_CONTEXT_PATH); in IncludeRequestWrapper()
36 orig_query_string_attr = request_.getAttribute(RequestDispatcher.INCLUDE_QUERY_STRING); in IncludeRequestWrapper()
H A DForwardRequestWrapper.java39 request_ = (Request) request.getAttribute(Request.BARE); in ForwardRequestWrapper()
42 keep_attrs = request_.getAttribute(RequestDispatcher.FORWARD_REQUEST_URI) != null; in ForwardRequestWrapper()
H A DSession.java90 public Object getAttribute(String s) in getAttribute() method in Session
101 return getAttribute(s); in getValue()
H A DContext.java242 path = (String) request.getAttribute(RequestDispatcher.INCLUDE_SERVLET_PATH); in doGet()
973 Object code = req.getAttribute(RequestDispatcher.ERROR_STATUS_CODE); in service()
1146 metadata_complete_ = doc_elem.getAttribute("metadata-complete").equals("true"); in processWebXml()
1147 app_version_ = doc_elem.getAttribute("version"); in processWebXml()
2768 req = (Request) request.getAttribute(Request.BARE);
2836 req = (Request) request.getAttribute(Request.BARE);
3060 public Object getAttribute(String name)
H A DRequest.java337 File tmpDir = (File) context.getAttribute(ServletContext.TEMPDIR); in parseMultiParts()
665 public Object getAttribute(String name) in getAttribute() method in Request
/unit/test/java/include/
H A Dapp.java125 …out.println(RequestDispatcher.INCLUDE_REQUEST_URI + ": " + request.getAttribute(RequestDispatcher… in doGet()
126 …out.println(RequestDispatcher.INCLUDE_CONTEXT_PATH + ": " + request.getAttribute(RequestDispatcher… in doGet()
127 …out.println(RequestDispatcher.INCLUDE_SERVLET_PATH + ": " + request.getAttribute(RequestDispatcher… in doGet()
128 …out.println(RequestDispatcher.INCLUDE_PATH_INFO + ": " + request.getAttribute(RequestDispatcher… in doGet()
129 …out.println(RequestDispatcher.INCLUDE_QUERY_STRING + ": " + request.getAttribute(RequestDispatcher… in doGet()
/unit/test/java/forward/
H A Dapp.java116 ….addHeader("X-" + RequestDispatcher.FORWARD_REQUEST_URI, "" + request.getAttribute(RequestDispatch… in doGet()
117 …addHeader("X-" + RequestDispatcher.FORWARD_CONTEXT_PATH, "" + request.getAttribute(RequestDispatch… in doGet()
118 …addHeader("X-" + RequestDispatcher.FORWARD_SERVLET_PATH, "" + request.getAttribute(RequestDispatch… in doGet()
119 …se.addHeader("X-" + RequestDispatcher.FORWARD_PATH_INFO, "" + request.getAttribute(RequestDispatch… in doGet()
120 …addHeader("X-" + RequestDispatcher.FORWARD_QUERY_STRING, "" + request.getAttribute(RequestDispatch… in doGet()
/unit/src/java/nginx/unit/websocket/server/
H A DWsContextListener.java38 if (sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE) == null) { in contextInitialized()
46 Object obj = sc.getAttribute(Constants.SERVER_CONTAINER_SERVLET_CONTEXT_ATTRIBUTE); in contextDestroyed()
H A DWsHandshakeRequest.java192 public Object getAttribute(String name) in getAttribute() method in WsHandshakeRequest
194 return request != null ? request.getAttribute(name) : null; in getAttribute()
H A DWsFilter.java41 sc = (WsServerContainer) getServletContext().getAttribute( in init()
H A DWsHttpUpgradeHandler.java112 Request r = (Request) handshakeRequest.getAttribute(Request.BARE); in init()
H A DUpgradeUtil.java79 Request r = (Request) request.getAttribute(Request.BARE); in isWebSocketUpgradeRequest()
H A DWsServerContainer.java86 …setInstanceManager((InstanceManager) servletContext.getAttribute(InstanceManager.class.getName())); in WsServerContainer()
/unit/test/java/session/
H A Dapp.java18 String old_var1 = (String) s.getAttribute("var1"); in doGet()