com.litongjava.tio.boot.http.TioHttpAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tio-boot Show documentation
Show all versions of tio-boot Show documentation
Java High Performance Web Development Framework
package com.litongjava.tio.boot.http;
import com.litongjava.tio.http.common.HttpRequest;
import com.litongjava.tio.http.common.HttpResponse;
public class TioHttpAction {
private HttpRequest request;
private HttpResponse response;
public TioHttpAction() {
super();
}
public TioHttpAction(HttpRequest request, HttpResponse response) {
super();
this.request = request;
this.response = response;
}
public HttpRequest getRequest() {
return request;
}
public void setRequest(HttpRequest request) {
this.request = request;
}
public HttpResponse getResponse() {
return response;
}
public void setResponse(HttpResponse response) {
this.response = response;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy