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

com.scalar.db.sql.statement.builder.DropUserStatementBuilder Maven / Gradle / Ivy

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

import com.scalar.db.sql.statement.DropUserStatement;

public class DropUserStatementBuilder {

  public static class Start extends Buildable {
    Start(String username) {
      super(username);
    }
  }

  public static class Buildable {
    protected final String username;

    private Buildable(String username) {
      this.username = username;
    }

    /**
     * Builds a DropUserStatement object.
     *
     * @return a DropUserStatement object
     */
    public DropUserStatement build() {
      return DropUserStatement.create(username);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy