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

com.scalar.db.sql.statement.DclStatementVisitor Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
package com.scalar.db.sql.statement;

public interface DclStatementVisitor {
  R visit(CreateUserStatement statement, C context);

  R visit(AlterUserStatement statement, C context);

  R visit(DropUserStatement statement, C context);

  R visit(GrantStatement statement, C context);

  R visit(RevokeStatement statement, C context);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy