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

org.graylog2.rest.models.system.sessions.responses.AutoValue_SessionValidationResponse Maven / Gradle / Ivy

There is a newer version: 6.0.2
Show newest version
package org.graylog2.rest.models.system.sessions.responses;

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import javax.annotation.Nullable;

final class AutoValue_SessionValidationResponse extends $AutoValue_SessionValidationResponse {
  AutoValue_SessionValidationResponse(boolean isValid, String sessionId, String username) {
    super(isValid, sessionId, username);
  }

  @JsonIgnore
  public final boolean isIsValid() {
    return isValid();
  }

  @JsonIgnore
  @Nullable
  public final String getSessionId() {
    return sessionId();
  }

  @JsonIgnore
  @Nullable
  public final String getUsername() {
    return username();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy