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

org.graylog2.rest.models.system.sessions.requests.AutoValue_SessionCreateRequest Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import java.lang.String;
import javax.validation.constraints.NotEmpty;

final class AutoValue_SessionCreateRequest extends $AutoValue_SessionCreateRequest {
  AutoValue_SessionCreateRequest(String username, String password, String host) {
    super(username, password, host);
  }

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

  @JsonIgnore
  @NotEmpty
  public final String getPassword() {
    return password();
  }

  @JsonIgnore
  public final String getHost() {
    return host();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy