Files
HaE/src/main/java/burp/ui/board/LogEntry.java

54 lines
1.2 KiB
Java
Raw Normal View History

2023-10-12 21:38:27 +08:00
package burp.ui.board;
import burp.IHttpRequestResponsePersisted;
import java.net.URL;
public class LogEntry {
private final String comment;
private final IHttpRequestResponsePersisted requestResponse;
private final URL url;
private final String length;
2023-10-23 21:51:12 +08:00
private final String status;
2023-10-12 21:38:27 +08:00
private final String color;
private final String method;
2023-10-23 21:51:12 +08:00
LogEntry(IHttpRequestResponsePersisted requestResponse, String method, URL url, String comment, String length, String color, String status) {
2023-10-12 21:38:27 +08:00
this.requestResponse = requestResponse;
this.method = method;
this.url = url;
this.comment = comment;
this.length = length;
this.color = color;
2023-10-23 21:51:12 +08:00
this.status = status;
2023-10-12 21:38:27 +08:00
}
public String getColor() {
return this.color;
}
public URL getUrl() {
return this.url;
}
public String getLength() {
return this.length;
}
public String getComment() {
return this.comment;
}
public String getMethod() {
return this.method;
}
2023-10-23 21:51:12 +08:00
public String getStatus() {
return this.status;
}
2023-10-12 21:38:27 +08:00
public IHttpRequestResponsePersisted getRequestResponse() {
return this.requestResponse;
}
}