io.fusionauth.domain.TenantAccessControlConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
/*
* Copyright (c) 2021-2022, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain;
import java.util.Objects;
import java.util.UUID;
import com.inversoft.json.JacksonConstructor;
import com.inversoft.json.ToString;
/**
* @author Brett Guy
*/
public class TenantAccessControlConfiguration implements Buildable {
public UUID uiIPAccessControlListId;
@JacksonConstructor
public TenantAccessControlConfiguration() {
}
public TenantAccessControlConfiguration(TenantAccessControlConfiguration other) {
this.uiIPAccessControlListId = other.uiIPAccessControlListId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TenantAccessControlConfiguration that = (TenantAccessControlConfiguration) o;
return Objects.equals(uiIPAccessControlListId, that.uiIPAccessControlListId);
}
@Override
public int hashCode() {
return Objects.hash(uiIPAccessControlListId);
}
@Override
public String toString() {
return ToString.toString(this);
}
}