io.weaviate.client.v1.misc.model.OpenIDConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client Show documentation
Show all versions of client Show documentation
A java client for Weaviate Vector Search Engine
// Generated by delombok at Fri Nov 24 13:20:07 UTC 2023
package io.weaviate.client.v1.misc.model;
public class OpenIDConfiguration {
private String href;
private String clientID;
@java.lang.SuppressWarnings("all")
public String getHref() {
return this.href;
}
@java.lang.SuppressWarnings("all")
public String getClientID() {
return this.clientID;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public java.lang.String toString() {
return "OpenIDConfiguration(href=" + this.getHref() + ", clientID=" + this.getClientID() + ")";
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public boolean equals(final java.lang.Object o) {
if (o == this) return true;
if (!(o instanceof OpenIDConfiguration)) return false;
final OpenIDConfiguration other = (OpenIDConfiguration) o;
if (!other.canEqual((java.lang.Object) this)) return false;
final java.lang.Object this$href = this.getHref();
final java.lang.Object other$href = other.getHref();
if (this$href == null ? other$href != null : !this$href.equals(other$href)) return false;
final java.lang.Object this$clientID = this.getClientID();
final java.lang.Object other$clientID = other.getClientID();
if (this$clientID == null ? other$clientID != null : !this$clientID.equals(other$clientID)) return false;
return true;
}
@java.lang.SuppressWarnings("all")
protected boolean canEqual(final java.lang.Object other) {
return other instanceof OpenIDConfiguration;
}
@java.lang.Override
@java.lang.SuppressWarnings("all")
public int hashCode() {
final int PRIME = 59;
int result = 1;
final java.lang.Object $href = this.getHref();
result = result * PRIME + ($href == null ? 43 : $href.hashCode());
final java.lang.Object $clientID = this.getClientID();
result = result * PRIME + ($clientID == null ? 43 : $clientID.hashCode());
return result;
}
}