summaryrefslogtreecommitdiffstats
path: root/wso2bpel-ext/wso2bpel-core/BPEL4RESTLight/src/main/java/org/opentosca/bpel4restlight/rest/HttpResponseMessage.java
blob: 0836918e1281ff360a00a638c19ed1607da6c2ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * This enum is intended to simplify identifying different HTTP-methods
 */
package org.opentosca.bpel4restlight.rest;

/**
 */
public class HttpResponseMessage {
	
	private int statusCode;
	private String responseBody;
	
	
	/**
	 * @return the statusCode
	 */
	public int getStatusCode() {
		return this.statusCode;
	}
	
	/**
	 * @param statusCode the statusCode to set
	 */
	protected void setStatusCode(int statusCode) {
		this.statusCode = statusCode;
	}
	
	/**
	 * @return the responseBody
	 */
	public String getResponseBody() {
		return this.responseBody;
	}
	
	/**
	 * @param responseBody the responseBody to set
	 */
	protected void setResponseBody(String responseBody) {
		this.responseBody = responseBody;
	}
	
}