
leshan.core.response.CreateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leshan-core Show documentation
Show all versions of leshan-core Show documentation
Core classes for implementing Lightweight M2M
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