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

org.graylog2.plugin.events.inputs.AutoValue_IOStateChangedEvent Maven / Gradle / Ivy

There is a newer version: 5.2.7
Show newest version
package org.graylog2.plugin.events.inputs;

import com.fasterxml.jackson.annotation.JsonIgnore;
import org.graylog2.plugin.IOState;
import org.graylog2.plugin.Stoppable;

final class AutoValue_IOStateChangedEvent extends $AutoValue_IOStateChangedEvent {
  AutoValue_IOStateChangedEvent(IOState.Type oldState, IOState.Type newState,
      IOState changedState) {
    super(oldState, newState, changedState);
  }

  @JsonIgnore
  public final IOState.Type getOldState() {
    return oldState();
  }

  @JsonIgnore
  public final IOState.Type getNewState() {
    return newState();
  }

  @JsonIgnore
  public final IOState getChangedState() {
    return changedState();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy