/modules/org.restlet/src/main/java/org/restlet/engine/adapter/HttpResponse.java

http://github.com/restlet/restlet-framework-java · Java · 108 lines · 37 code · 12 blank · 59 comment · 2 complexity · 938a8bbaadd71b9f6d6c21f7dd4ebf02 MD5 · raw file

  1. /**
  2. * Copyright 2005-2020 Talend
  3. *
  4. * The contents of this file are subject to the terms of one of the following
  5. * open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
  6. * select the license that you prefer but you may not use this file except in
  7. * compliance with one of these Licenses.
  8. *
  9. * You can obtain a copy of the Apache 2.0 license at
  10. * http://www.opensource.org/licenses/apache-2.0
  11. *
  12. * You can obtain a copy of the EPL 1.0 license at
  13. * http://www.opensource.org/licenses/eclipse-1.0
  14. *
  15. * See the Licenses for the specific language governing permissions and
  16. * limitations under the Licenses.
  17. *
  18. * Alternatively, you can obtain a royalty free commercial license with less
  19. * limitations, transferable or non-transferable, directly at
  20. * https://restlet.talend.com/
  21. *
  22. * Restlet is a registered trademark of Talend S.A.
  23. */
  24. package org.restlet.engine.adapter;
  25. import org.restlet.Message;
  26. import org.restlet.Request;
  27. import org.restlet.Response;
  28. import org.restlet.data.ServerInfo;
  29. import org.restlet.data.Status;
  30. import org.restlet.engine.Engine;
  31. /**
  32. * Response wrapper for server HTTP calls.
  33. *
  34. * @author Jerome Louvel
  35. */
  36. public class HttpResponse extends Response {
  37. /**
  38. * Adds a new header to the given request.
  39. *
  40. * @param response
  41. * The response to update.
  42. * @param headerName
  43. * The header name to add.
  44. * @param headerValue
  45. * The header value to add.
  46. */
  47. public static void addHeader(Response response, String headerName,
  48. String headerValue) {
  49. if (response instanceof HttpResponse) {
  50. ((Message) response).getHeaders().add(headerName, headerValue);
  51. }
  52. }
  53. /** The low-level HTTP call. */
  54. private volatile ServerCall httpCall;
  55. /** Indicates if the server data was parsed and added. */
  56. private volatile boolean serverAdded;
  57. /**
  58. * Constructor.
  59. *
  60. * @param httpCall
  61. * The low-level HTTP server call.
  62. * @param request
  63. * The associated high-level request.
  64. */
  65. public HttpResponse(ServerCall httpCall, Request request) {
  66. super(request);
  67. this.serverAdded = false;
  68. this.httpCall = httpCall;
  69. // Set the properties
  70. setStatus(Status.SUCCESS_OK);
  71. }
  72. /**
  73. * Returns the low-level HTTP call.
  74. *
  75. * @return The low-level HTTP call.
  76. */
  77. public ServerCall getHttpCall() {
  78. return this.httpCall;
  79. }
  80. /**
  81. * Returns the server-specific information.
  82. *
  83. * @return The server-specific information.
  84. */
  85. @Override
  86. public ServerInfo getServerInfo() {
  87. final ServerInfo result = super.getServerInfo();
  88. if (!this.serverAdded) {
  89. result.setAddress(this.httpCall.getServerAddress());
  90. result.setAgent(Engine.VERSION_HEADER);
  91. result.setPort(this.httpCall.getServerPort());
  92. this.serverAdded = true;
  93. }
  94. return result;
  95. }
  96. }