Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d9289d24e54d61121a727a8e9e8cde94756f7885 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.eclipse.om2m.adn.tools;

public class HttpResponse {
	private int statusCode;
	private String body;

	public int getStatusCode() {
		return statusCode;
	}
	
	public void setStatusCode(int statusCode) {
		this.statusCode = statusCode;
	}
	
	public String getBody() {
		return body;
	}
	
	public void setBody(String body) {
		this.body = body;
	}
}

Back to the top