pipiz.entity.HttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Buggy Show documentation
Show all versions of Buggy Show documentation
Web crawler - easy for use
The newest version!
package pipiz.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.apache.http.Header;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class HttpResponse {
private String content;
private Header[] headers;
private int statusCode;
}