All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.graylog2.cluster.AutoValue_ClusterConfigChangedEvent Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
package org.graylog2.cluster;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import javax.validation.constraints.NotEmpty;
import org.joda.time.DateTime;

final class AutoValue_ClusterConfigChangedEvent extends $AutoValue_ClusterConfigChangedEvent {
  AutoValue_ClusterConfigChangedEvent(DateTime date, String nodeId, String type) {
    super(date, nodeId, type);
  }

  @JsonIgnore
  public final DateTime getDate() {
    return date();
  }

  @JsonIgnore
  @NotEmpty
  public final String getNodeId() {
    return nodeId();
  }

  @JsonIgnore
  @NotEmpty
  public final String getType() {
    return type();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy