Module org.jooq
Package org.jooq.impl

Interface QOM.Grant

All Superinterfaces:
Attachable, AttachableQueryPart, DDLQuery, Flow.Publisher<Integer>, Publisher<Integer>, org.reactivestreams.Publisher<Integer>, Query, QueryPart, RowCountQuery, Serializable, Statement
Enclosing class:
QOM

public static interface QOM.Grant extends DDLQuery
The GRANT statement.
  • Method Details

    • $privileges

      @NotNull @NotNull QOM.UnmodifiableList<? extends Privilege> $privileges()
    • $on

      @NotNull @NotNull Table<?> $on()
    • $to

      @Nullable @Nullable Role $to()
    • $toPublic

      boolean $toPublic()
    • $withGrantOption

      boolean $withGrantOption()
    • $privileges

      @NotNull @NotNull QOM.Grant $privileges(Collection<? extends Privilege> privileges)
    • $on

      @NotNull @NotNull QOM.Grant $on(Table<?> on)
    • $to

      @NotNull @NotNull QOM.Grant $to(Role to)
    • $toPublic

      @NotNull @NotNull QOM.Grant $toPublic(boolean toPublic)
    • $withGrantOption

      @NotNull @NotNull QOM.Grant $withGrantOption(boolean withGrantOption)