Uses of Interface
org.jooq.MigrationListener
-
Packages that use MigrationListener Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This package contains jOOQ's implementation classes.org.jooq.tools.jdbc This package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1. -
-
Uses of MigrationListener in org.jooq
Methods in org.jooq that return MigrationListener Modifier and Type Method Description @NotNull MigrationListener
MigrationListenerProvider. provide()
Provide anMigrationListener
instance.Methods in org.jooq with parameters of type MigrationListener Modifier and Type Method Description @NotNull Configuration
Configuration. derive(MigrationListener... newMigrationListeners)
Create a derived configuration from this one, with new migration listeners.@NotNull Configuration
Configuration. set(MigrationListener... newMigrationListeners)
Change this configuration to hold a new migration listeners. -
Uses of MigrationListener in org.jooq.impl
Classes in org.jooq.impl that implement MigrationListener Modifier and Type Class Description class
DefaultMigrationListener
A publicly available default implementation ofMigrationListener
.Methods in org.jooq.impl that return MigrationListener Modifier and Type Method Description MigrationListener
DefaultMigrationListenerProvider. provide()
Methods in org.jooq.impl with parameters of type MigrationListener Modifier and Type Method Description Configuration
DefaultConfiguration. derive(MigrationListener... newMigrationListeners)
static MigrationListenerProvider[]
DefaultMigrationListenerProvider. providers(MigrationListener... listeners)
Convenience method to construct an array ofDefaultMigrationListenerProvider
from an array ofMigrationListener
instances.Configuration
DefaultConfiguration. set(MigrationListener... newMigrationListeners)
Constructors in org.jooq.impl with parameters of type MigrationListener Constructor Description DefaultMigrationListenerProvider(MigrationListener listener)
Create a new provider instance from an argument listener. -
Uses of MigrationListener in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc with parameters of type MigrationListener Modifier and Type Method Description Configuration
MockConfiguration. derive(MigrationListener... newMigrationListeners)
Configuration
MockConfiguration. set(MigrationListener... newMigrationListeners)
-