com.databricks.sdk.service.catalog.EffectivePrivilege Maven / Gradle / Ivy
// Code generated from OpenAPI specs by Databricks SDK Generator. DO NOT EDIT.
package com.databricks.sdk.service.catalog;
import com.databricks.sdk.support.Generated;
import com.databricks.sdk.support.ToStringer;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Objects;
@Generated
public class EffectivePrivilege {
/**
* The full name of the object that conveys this privilege via inheritance. This field is omitted
* when privilege is not inherited (it's assigned to the securable itself).
*/
@JsonProperty("inherited_from_name")
private String inheritedFromName;
/**
* The type of the object that conveys this privilege via inheritance. This field is omitted when
* privilege is not inherited (it's assigned to the securable itself).
*/
@JsonProperty("inherited_from_type")
private SecurableType inheritedFromType;
/** The privilege assigned to the principal. */
@JsonProperty("privilege")
private Privilege privilege;
public EffectivePrivilege setInheritedFromName(String inheritedFromName) {
this.inheritedFromName = inheritedFromName;
return this;
}
public String getInheritedFromName() {
return inheritedFromName;
}
public EffectivePrivilege setInheritedFromType(SecurableType inheritedFromType) {
this.inheritedFromType = inheritedFromType;
return this;
}
public SecurableType getInheritedFromType() {
return inheritedFromType;
}
public EffectivePrivilege setPrivilege(Privilege privilege) {
this.privilege = privilege;
return this;
}
public Privilege getPrivilege() {
return privilege;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
EffectivePrivilege that = (EffectivePrivilege) o;
return Objects.equals(inheritedFromName, that.inheritedFromName)
&& Objects.equals(inheritedFromType, that.inheritedFromType)
&& Objects.equals(privilege, that.privilege);
}
@Override
public int hashCode() {
return Objects.hash(inheritedFromName, inheritedFromType, privilege);
}
@Override
public String toString() {
return new ToStringer(EffectivePrivilege.class)
.add("inheritedFromName", inheritedFromName)
.add("inheritedFromType", inheritedFromType)
.add("privilege", privilege)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy