package io.monokkel.domain; import java.io.Serializable; import java.util.List; /** * Created by tarjei on 21/05/14. */ public class UrlVisitResponse implements Serializable { public static final long serialVersionUID = 1L; public String response; private final Integer httpStatus; private final List<String> typesFromTheResponseHeader; public Long timeStamp; private String url; public UrlVisitResponse(final String response, final Integer httpStatus, final List<String> typesFromTheResponseHeader, final Long timeStamp, final String url){ this.response = response; this.httpStatus = httpStatus; this.typesFromTheResponseHeader = typesFromTheResponseHeader; this.timeStamp = timeStamp; this.url = url; } public String getResponse() { return response; } public Long getTimeStamp() { return timeStamp; } public String getUrl() { return url; } public Integer getHttpStatus() { return httpStatus; } public List<String> getTypesFromTheResponseHeader() { return typesFromTheResponseHeader; } }