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

io.prestosql.sql.tree.RevokeRoles Maven / Gradle / Ivy

There is a newer version: 350
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.prestosql.sql.tree;

import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;

import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;

import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;

public class RevokeRoles
        extends Statement
{
    private final Set roles;
    private final Set grantees;
    private final boolean adminOptionFor;
    private final Optional grantor;

    public RevokeRoles(
            NodeLocation location,
            Set roles,
            Set grantees,
            boolean adminOptionFor,
            Optional grantor)
    {
        this(Optional.of(location), roles, grantees, adminOptionFor, grantor);
    }

    public RevokeRoles(
            Set roles,
            Set grantees,
            boolean adminOptionFor,
            Optional grantor)
    {
        this(Optional.empty(), roles, grantees, adminOptionFor, grantor);
    }

    private RevokeRoles(
            Optional location,
            Set roles,
            Set grantees,
            boolean adminOptionFor,
            Optional grantor)
    {
        super(location);
        this.roles = ImmutableSet.copyOf(requireNonNull(roles, "roles is null"));
        this.grantees = ImmutableSet.copyOf(requireNonNull(grantees, "grantees is null"));
        this.adminOptionFor = adminOptionFor;
        this.grantor = requireNonNull(grantor, "grantor is null");
    }

    public Set getRoles()
    {
        return roles;
    }

    public Set getGrantees()
    {
        return grantees;
    }

    public boolean isAdminOptionFor()
    {
        return adminOptionFor;
    }

    public Optional getGrantor()
    {
        return grantor;
    }

    @Override
    public List getChildren()
    {
        return ImmutableList.of();
    }

    @Override
    public  R accept(AstVisitor visitor, C context)
    {
        return visitor.visitRevokeRoles(this, context);
    }

    @Override
    public boolean equals(Object o)
    {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        RevokeRoles that = (RevokeRoles) o;
        return adminOptionFor == that.adminOptionFor &&
                Objects.equals(roles, that.roles) &&
                Objects.equals(grantees, that.grantees) &&
                Objects.equals(grantor, that.grantor);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(roles, grantees, adminOptionFor, grantor);
    }

    @Override
    public String toString()
    {
        return toStringHelper(this)
                .add("roles", roles)
                .add("grantees", grantees)
                .add("adminOptionFor", adminOptionFor)
                .add("grantor", grantor)
                .toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy