io.milvus.param.role.RevokeRolePrivilegeParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of milvus-sdk-java Show documentation
Show all versions of milvus-sdk-java Show documentation
Java SDK for Milvus, a distributed high-performance vector database.
package io.milvus.param.role;
import io.milvus.exception.ParamException;
import io.milvus.param.ParamUtils;
import lombok.Getter;
import lombok.NonNull;
import lombok.ToString;
@Getter
@ToString
public class RevokeRolePrivilegeParam {
private final String roleName;
private final String object;
private final String objectName;
private final String privilege;
private RevokeRolePrivilegeParam(@NonNull RevokeRolePrivilegeParam.Builder builder) {
this.roleName = builder.roleName;
this.object = builder.object;
this.objectName = builder.objectName;
this.privilege = builder.privilege;
}
public static RevokeRolePrivilegeParam.Builder newBuilder() {
return new RevokeRolePrivilegeParam.Builder();
}
/**
* Builder for {@link RevokeRolePrivilegeParam} class.
*/
public static final class Builder {
private String roleName;
private String object;
private String objectName;
private String privilege;
private Builder() {
}
/**
* Sets the roleName. RoleName cannot be empty or null.
*
* @param roleName roleName
* @return Builder
*/
public RevokeRolePrivilegeParam.Builder withRoleName(@NonNull String roleName) {
this.roleName = roleName;
return this;
}
/**
* Sets the object. object cannot be empty or null.
*
* @param object object
* @return Builder
*/
public RevokeRolePrivilegeParam.Builder withObject(@NonNull String object) {
this.object = object;
return this;
}
/**
* Sets the objectName. objectName cannot be empty or null.
*
* @param objectName objectName
* @return Builder
*/
public RevokeRolePrivilegeParam.Builder withObjectName(@NonNull String objectName) {
this.objectName = objectName;
return this;
}
/**
* Sets the privilege. privilege cannot be empty or null.
*
* @param privilege privilege
* @return Builder
*/
public RevokeRolePrivilegeParam.Builder withPrivilege(@NonNull String privilege) {
this.privilege = privilege;
return this;
}
/**
* Verifies parameters and creates a new {@link RevokeRolePrivilegeParam} instance.
*
* @return {@link RevokeRolePrivilegeParam}
*/
public RevokeRolePrivilegeParam build() throws ParamException {
ParamUtils.CheckNullEmptyString(roleName, "RoleName");
ParamUtils.CheckNullEmptyString(object, "Object");
ParamUtils.CheckNullEmptyString(objectName, "ObjectName");
ParamUtils.CheckNullEmptyString(privilege, "Privilege");
return new RevokeRolePrivilegeParam(this);
}
}
}