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

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

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

Request.getMinor介绍

暂无

代码示例

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

  1. /**
  2. * This can be used to get the major number from a HTTP version.
  3. * The major version corresponds to the major type that is the 0
  4. * of a HTTP/1.0 version string. This is used to determine if
  5. * the request message has keep alive semantics.
  6. *
  7. * @return the major version number for the request message
  8. */
  9. public int getMinor() {
  10. return request.getMinor();
  11. }

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

  1. /**
  2. * This can be used to get the major number from a HTTP version.
  3. * The major version corresponds to the major type that is the 0
  4. * of a HTTP/1.0 version string. This is used to determine if
  5. * the request message has keep alive semantics.
  6. *
  7. * @return the major version number for the request message
  8. */
  9. public int getMinor() {
  10. return request.getMinor();
  11. }

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

  1. /**
  2. * This can be used to get the major number from a HTTP version.
  3. * The major version corresponds to the major type that is the 0
  4. * of a HTTP/1.0 version string. This is used to determine if
  5. * the request message has keep alive semantics.
  6. *
  7. * @return the major version number for the request message
  8. */
  9. public int getMinor() {
  10. return request.getMinor();
  11. }

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

  1. public int getMinor() {
  2. return request.getMinor();
  3. }

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

  1. /**
  2. * Constructs this class with the specified {@link simple.http.Request} and
  3. * {@link simple.http.Response}.
  4. *
  5. * @param server
  6. * The parent server.
  7. * @param request
  8. * Request to wrap.
  9. * @param response
  10. * Response to wrap.
  11. * @param confidential
  12. * Indicates if this call is acting in HTTP or HTTPS mode.
  13. */
  14. SimpleCall(Server server, Request request, Response response,
  15. boolean confidential) {
  16. super(server);
  17. this.version = request.getMajor() + "." + request.getMinor();
  18. this.request = request;
  19. this.response = response;
  20. setConfidential(confidential);
  21. this.requestHeadersAdded = false;
  22. }

相关文章