View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.example.launcher;
8   
9   import org.codehaus.jackson.annotate.JsonProperty;
10  
11  public class HTTPResponse
12  {
13      @JsonProperty
14      private String response;
15  
16      /**
17  	 *
18  	 */
19      public HTTPResponse()
20      {
21          this(null);
22      }
23  
24      public HTTPResponse(String response)
25      {
26          super();
27          setResponse(response);
28      }
29  
30      public String getResponse()
31      {
32          return response;
33      }
34  
35      public void setResponse(String response)
36      {
37          this.response = response;
38      }
39  }