in src/main/java/com/googlesource/gerrit/plugins/auditsl4j/logsource/HTTPLog.java [48:69]
public HTTPLog(
String ip,
String user,
String timestamp,
String method,
String resource,
String protocol,
Integer status,
String contentLength,
String referrer,
String userAgent) {
this.ip = ip;
this.user = user;
this.method = method;
this.timestamp = timestamp;
this.resource = resource;
this.protocol = protocol;
this.status = status;
this.contentLength = contentLength;
this.referrer = referrer;
this.userAgent = userAgent;
}