Searched defs:httpExchange (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java58 private final HttpExchange httpExchange; field in class:PortableConnectionImpl
63 public PortableConnectionImpl(@NotNull HttpAdapter adapter, @NotNull HttpExchange httpExchange) { argument
65 this.httpExchange = httpExchange;
71 return httpExchange.getRequestHeaders();
76 return httpExchange.getRequestHeader(headerName);
81 Map<String, List<String>> r = httpExchange.getResponseHeaders();
96 return httpExchange.getResponseHeaders();
101 httpExchange.addResponseHeader("Content-Type", value);
116 return httpExchange
[all...]
H A DServerConnectionImpl.java64 private final HttpExchange httpExchange; field in class:ServerConnectionImpl
71 public ServerConnectionImpl(@NotNull HttpAdapter adapter, @NotNull HttpExchange httpExchange) { argument
73 this.httpExchange = httpExchange;
79 return httpExchange.getRequestHeaders();
84 return httpExchange.getRequestHeaders().getFirst(headerName);
89 Headers r = httpExchange.getResponseHeaders();
103 return httpExchange.getResponseHeaders();
108 httpExchange.getResponseHeaders().set("Content-Type",value);
124 in = new LWHSInputStream(httpExchange
[all...]

Completed in 30 milliseconds