
com.proofpoint.discovery.AutoValue_AuthAuditRecord Maven / Gradle / Ivy
The newest version!
package com.proofpoint.discovery;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.annotation.processing.Generated;
@Generated("com.google.auto.value.processor.AutoValueProcessor")
final class AutoValue_AuthAuditRecord extends AuthAuditRecord {
private final String message;
AutoValue_AuthAuditRecord(
String message) {
if (message == null) {
throw new NullPointerException("Null message");
}
this.message = message;
}
@JsonProperty
@Override
public String getMessage() {
return message;
}
@Override
public String toString() {
return "AuthAuditRecord{"
+ "message=" + message
+ "}";
}
@Override
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (o instanceof AuthAuditRecord) {
AuthAuditRecord that = (AuthAuditRecord) o;
return this.message.equals(that.getMessage());
}
return false;
}
@Override
public int hashCode() {
int h$ = 1;
h$ *= 1000003;
h$ ^= message.hashCode();
return h$;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy