io.github.lab515.utils.WebLoad Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qray Show documentation
Show all versions of qray Show documentation
remoting ondemand in java
package io.github.lab515.utils;
import java.util.List;
import java.util.Map;
public class WebLoad {
public boolean preOrPost = false;
public boolean filtering = false;
public List headers = null; // what's
public Object data = null;
public int status = -1;
public String req_url = null;
public Map url_params = null;
public Map req_headers = null;
public String req_data = null;
public String req_query = null;
public String req_method = null;
public String req_addr = null;
public String req_host = null;
}