org.simpleframework.http.Request.getValue()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(8.2k)|赞(0)|评价(0)|浏览(273)

本文整理了Java中org.simpleframework.http.Request.getValue方法的一些代码示例,展示了Request.getValue的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getValue方法的具体详情如下:
包路径:org.simpleframework.http.Request
类名称:Request
方法名:getValue

Request.getValue介绍

暂无

代码示例

代码示例来源:origin: jersey/jersey

  1. private URI getBaseUri(final Request request) {
  2. try {
  3. final String hostHeader = request.getValue("Host");
  4. if (hostHeader != null) {
  5. final String scheme = request.isSecure() ? "https" : "http";
  6. return new URI(scheme + "://" + hostHeader + "/");
  7. } else {
  8. final Address address = request.getAddress();
  9. return new URI(address.getScheme(), null, address.getDomain(), address.getPort(), "/", null,
  10. null);
  11. }
  12. } catch (final URISyntaxException ex) {
  13. throw new IllegalArgumentException(ex);
  14. }
  15. }

代码示例来源:origin: SonarSource/sonarqube

  1. if (!"gzip".equals(req.getValue("Accept-Encoding"))) {
  2. throw new IllegalStateException("Should accept gzip");

代码示例来源:origin: jersey/jersey

  1. @Override
  2. public void handle(final Request request, final Response response) {
  3. final ResponseWriter responseWriter = new ResponseWriter(response, scheduler);
  4. final URI baseUri = getBaseUri(request);
  5. final URI requestUri = getRequestUri(request, baseUri);
  6. try {
  7. final ContainerRequest requestContext = new ContainerRequest(baseUri, requestUri,
  8. request.getMethod(), getSecurityContext(request), new MapPropertiesDelegate());
  9. requestContext.setEntityStream(request.getInputStream());
  10. for (final String headerName : request.getNames()) {
  11. requestContext.headers(headerName, request.getValue(headerName));
  12. }
  13. requestContext.setWriter(responseWriter);
  14. requestContext.setRequestScopedInitializer(injectionManager -> {
  15. injectionManager.<Ref<Request>>getInstance(RequestTYPE).set(request);
  16. injectionManager.<Ref<Response>>getInstance(ResponseTYPE).set(response);
  17. });
  18. appHandler.handle(requestContext);
  19. } catch (final Exception ex) {
  20. throw new RuntimeException(ex);
  21. } finally {
  22. if (!responseWriter.isSuspended()) {
  23. close(response);
  24. }
  25. }
  26. }

代码示例来源:origin: miltonio/milton2

  1. @Override
  2. public String getRequestHeader(Header header) {
  3. return baseRequest.getValue(header.code);
  4. }

代码示例来源:origin: CodeStory/fluent-http

  1. @Override
  2. public String header(String name) {
  3. return request.getValue(name);
  4. }

代码示例来源:origin: lantunes/fixd

  1. public String getHeaderValue(String name) {
  2. return request.getValue(name);
  3. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma seperated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. *
  11. * @return this returns the value that the HTTP message header
  12. */
  13. public String getValue(String name) {
  14. return request.getValue(name);
  15. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma separated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. * @param index if there are multiple values this selects one
  11. *
  12. * @return this returns the value that the HTTP message header
  13. */
  14. public String getValue(String name, int index) {
  15. return request.getValue(name, index);
  16. }

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma seperated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. *
  11. * @return this returns the value that the HTTP message header
  12. */
  13. public String getValue(String name) {
  14. return request.getValue(name);
  15. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma seperated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. *
  11. * @return this returns the value that the HTTP message header
  12. */
  13. public String getValue(String name) {
  14. return request.getValue(name);
  15. }

代码示例来源:origin: org.simpleframework/simple

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma separated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. * @param index if there are multiple values this selects one
  11. *
  12. * @return this returns the value that the HTTP message header
  13. */
  14. public String getValue(String name, int index) {
  15. return request.getValue(name, index);
  16. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This can be used to get the value of the first message header
  3. * that has the specified name. The value provided from this will
  4. * be trimmed so there is no need to modify the value, also if
  5. * the header name specified refers to a comma separated list of
  6. * values the value returned is the first value in that list.
  7. * This returns null if theres no HTTP message header.
  8. *
  9. * @param name the HTTP message header to get the value from
  10. * @param index if there are multiple values this selects one
  11. *
  12. * @return this returns the value that the HTTP message header
  13. */
  14. public String getValue(String name, int index) {
  15. return request.getValue(name, index);
  16. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This is used to determine if the request is a valid WebSocket
  3. * handshake of the correct version. This also checks to see if
  4. * the request contained the required handshake token.
  5. *
  6. * @return this returns true if the request is a valid handshake
  7. */
  8. private boolean isProtocol() {
  9. String protocol = request.getValue(SEC_WEBSOCKET_VERSION);
  10. String token = request.getValue(SEC_WEBSOCKET_KEY);
  11. if(token != null) {
  12. return version.equals(protocol);
  13. }
  14. return false;
  15. }

代码示例来源:origin: restx/restx

  1. @Override
  2. public Optional<String> getHeader(String headerName) {
  3. return Optional.fromNullable(request.getValue(headerName));
  4. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This is used to determine if the request is a valid WebSocket
  3. * handshake of the correct version. This also checks to see if
  4. * the request contained the required handshake token.
  5. *
  6. * @return this returns true if the request is a valid handshake
  7. */
  8. private boolean isProtocol() {
  9. String protocol = request.getValue(SEC_WEBSOCKET_VERSION);
  10. String token = request.getValue(SEC_WEBSOCKET_KEY);
  11. if(token != null) {
  12. return version.equals(protocol);
  13. }
  14. return false;
  15. }

代码示例来源:origin: io.restx/restx-server-simple

  1. @Override
  2. public Optional<String> getHeader(String headerName) {
  3. return Optional.fromNullable(request.getValue(headerName));
  4. }

代码示例来源:origin: miltonio/milton2

  1. public Map<String, String> getHeaders() {
  2. Map<String, String> headers = new HashMap<String, String>();
  3. for (String s : baseRequest.getNames()) {
  4. String val = baseRequest.getValue(s);
  5. headers.put(s, val);
  6. }
  7. return headers;
  8. }

代码示例来源:origin: com.sun.jersey.contribs/jersey-simple-server

  1. private InBoundHeaders getHeaders(Request request) {
  2. InBoundHeaders header = new InBoundHeaders();
  3. List<String> names = request.getNames();
  4. for (String name : names) {
  5. String value = request.getValue(name);
  6. header.add(name, value);
  7. }
  8. return header;
  9. }

代码示例来源:origin: org.glassfish.jersey.containers/jersey-container-simple-http

  1. private URI getBaseUri(final Request request) {
  2. try {
  3. final String hostHeader = request.getValue("Host");
  4. if (hostHeader != null) {
  5. final String scheme = request.isSecure() ? "https" : "http";
  6. return new URI(scheme + "://" + hostHeader + "/");
  7. } else {
  8. final Address address = request.getAddress();
  9. return new URI(address.getScheme(), null, address.getDomain(), address.getPort(), "/", null,
  10. null);
  11. }
  12. } catch (final URISyntaxException ex) {
  13. throw new IllegalArgumentException(ex);
  14. }
  15. }

代码示例来源:origin: org.restlet/org.restlet.ext.simple

  1. /**
  2. * Returns the list of request headers.
  3. *
  4. * @return The list of request headers.
  5. */
  6. @Override
  7. public Series<Parameter> getRequestHeaders() {
  8. final Series<Parameter> result = super.getRequestHeaders();
  9. if (!this.requestHeadersAdded) {
  10. final List<String> names = this.request.getNames();
  11. for (String name : names) {
  12. result.add(new Parameter(name, this.request.getValue(name)));
  13. }
  14. this.requestHeadersAdded = true;
  15. }
  16. return result;
  17. }

相关文章