ru.sendto.rest.server.api.HttpBundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of UniversalRest-api Show documentation
Show all versions of UniversalRest-api Show documentation
Universal Rest Api and gwt compilation module
The newest version!
package ru.sendto.rest.server.api;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.http.WebConnection;
import lombok.Data;
@Data
public class HttpBundle {
HttpServletRequest request;
HttpServletResponse response;
HttpSession httpSession;
// WebConnection webConnection;
}