Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
HTTPResponse |
|
| 0.0;0 |
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 | 0 | this(null); |
22 | 0 | } |
23 | ||
24 | public HTTPResponse(String response) | |
25 | { | |
26 | 0 | super(); |
27 | 0 | setResponse(response); |
28 | 0 | } |
29 | ||
30 | public String getResponse() | |
31 | { | |
32 | 0 | return response; |
33 | } | |
34 | ||
35 | public void setResponse(String response) | |
36 | { | |
37 | 0 | this.response = response; |
38 | 0 | } |
39 | } |