All Downloads are FREE. Search and download functionalities are using the official Maven repository.

leshan.core.response.CreateResponse Maven / Gradle / Ivy

The newest version!
package leshan.core.response;

import leshan.ResponseCode;

public class CreateResponse extends ClientResponse {

	private String location;

	public CreateResponse(ResponseCode code) {
		super(code);
	}

	public CreateResponse(ResponseCode code, String location) {
		super(code);
		this.location = location;
	}

	public String getLocation() {
		return location;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy