A C E F G H I J L M P R S T V 

A

all() - Method in interface com.googlecode.flyway.core.api.MigrationInfoService
Retrieves the full set of infos about applied, current and future migrations.
applied() - Method in interface com.googlecode.flyway.core.api.MigrationInfoService
Retrieves the full set of infos about the migrations applied to the DB.

C

clean() - Method in class com.googlecode.flyway.core.Flyway
Drops all objects (tables, views, procedures, triggers, ...) in the configured schemas.
com.googlecode.flyway.core - package com.googlecode.flyway.core
The main Flyway package and for most users, the only one they'll ever need to know about.
com.googlecode.flyway.core.api - package com.googlecode.flyway.core.api
FlywayException, MigrationInfo and related classes.
com.googlecode.flyway.core.api.migration - package com.googlecode.flyway.core.api.migration
Interfaces for Migration implementors.
com.googlecode.flyway.core.api.migration.jdbc - package com.googlecode.flyway.core.api.migration.jdbc
Interfaces for Jdbc Migrations.
com.googlecode.flyway.core.api.migration.spring - package com.googlecode.flyway.core.api.migration.spring
Interfaces for Spring Jdbc Migrations (require Spring Jdbc + dependencies on the classpath).
compareTo(MigrationVersion) - Method in class com.googlecode.flyway.core.api.MigrationVersion
 
configure(Properties) - Method in class com.googlecode.flyway.core.Flyway
Configures Flyway with these properties.
current() - Method in interface com.googlecode.flyway.core.api.MigrationInfoService
Retrieves the information of the current applied migration, if any.

E

EMPTY - Static variable in class com.googlecode.flyway.core.api.MigrationVersion
Version for an empty schema.
equals(Object) - Method in class com.googlecode.flyway.core.api.MigrationVersion
 

F

Flyway - Class in com.googlecode.flyway.core
This is the centre point of Flyway, and for most users, the only class they will ever have to deal with.
Flyway() - Constructor for class com.googlecode.flyway.core.Flyway
Creates a new instance of Flyway.
FlywayException - Exception in com.googlecode.flyway.core.api
Exception thrown when Flyway encounters a problem.
FlywayException(String, Throwable) - Constructor for exception com.googlecode.flyway.core.api.FlywayException
Creates a new FlywayException with this message and this cause.
FlywayException(String) - Constructor for exception com.googlecode.flyway.core.api.FlywayException
Creates a new FlywayException with this message.
FlywayException() - Constructor for exception com.googlecode.flyway.core.api.FlywayException
Creates a new FlywayException.

G

getChecksum() - Method in interface com.googlecode.flyway.core.api.migration.MigrationChecksumProvider
Computes the checksum of the migration.
getChecksum() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getDataSource() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the dataSource to use to access the database.
getDescription() - Method in interface com.googlecode.flyway.core.api.migration.MigrationInfoProvider
Returns the description for the migration history.
getDescription() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getDisplayName() - Method in enum com.googlecode.flyway.core.api.MigrationState
 
getEncoding() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the encoding of Sql migrations.
getExecutionTime() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getInitDescription() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the description to tag an existing schema with when executing init.
getInitialDescription() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use getInitDescription() instead. Will be removed in Flyway 3.0.
getInitialVersion() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use getInitVersion() instead. Will be removed in Flyway 3.0.
getInitVersion() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the version to tag an existing schema with when executing init.
getInstalledOn() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getLocations() - Method in class com.googlecode.flyway.core.Flyway
Retrieves locations on the classpath to scan recursively for migrations.
getPlaceholderPrefix() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the prefix of every placeholder.
getPlaceholders() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the map of <placeholder, replacementValue> to apply to sql migration scripts.
getPlaceholderSuffix() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the suffix of every placeholder.
getSchemas() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the schemas managed by Flyway.
getScript() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getSqlMigrationPrefix() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the file name prefix for sql migrations.
getSqlMigrationSuffix() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the file name suffix for sql migrations.
getState() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getTable() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the name of the schema metadata table that will be used by Flyway.
getTarget() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the target version up to which Flyway should run migrations.
getType() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 
getValidationErrorMode() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use isCleanOnValidationError instead. Will be removed in Flyway 3.0.
getValidationMode() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use isValidateOnMigrate instead. Will be removed in Flyway 3.0.
getVersion() - Method in interface com.googlecode.flyway.core.api.migration.MigrationInfoProvider
Returns the version after the migration is complete.
getVersion() - Method in interface com.googlecode.flyway.core.api.MigrationInfo
 

H

hashCode() - Method in class com.googlecode.flyway.core.api.MigrationVersion
 
history() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use flyway.info().applied() instead. Will be removed in Flyway 3.0.

I

info() - Method in class com.googlecode.flyway.core.Flyway
Retrieves the complete information about all the migrations including applied, pending and current migrations with details and status.
init() - Method in class com.googlecode.flyway.core.Flyway
Creates and initializes the Flyway metadata table.
isApplied() - Method in enum com.googlecode.flyway.core.api.MigrationState
 
isCleanOnValidationError() - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call clean or not when a validation error occurs.
isDisableInitCheck() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use initOnMigrate instead. Will be removed in Flyway 3.0.
isFailed() - Method in enum com.googlecode.flyway.core.api.MigrationState
 
isIgnoreFailedFutureMigration() - Method in class com.googlecode.flyway.core.Flyway
Whether to ignore failed future migrations when reading the metadata table.
isInitOnMigrate() - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call init when migrate is executed against a non-empty schema with no metadata table.
isOutOfOrder() - Method in class com.googlecode.flyway.core.Flyway
Allows migrations to be run "out of order".
isResolved() - Method in enum com.googlecode.flyway.core.api.MigrationState
 
isValidateOnMigrate() - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call validate or not when running migrate.

J

JdbcMigration - Interface in com.googlecode.flyway.core.api.migration.jdbc
Interface to be implemented by Jdbc Java Migrations.

L

LATEST - Static variable in class com.googlecode.flyway.core.api.MigrationVersion
Latest version.

M

migrate(Connection) - Method in interface com.googlecode.flyway.core.api.migration.jdbc.JdbcMigration
Executes this migration.
migrate(JdbcTemplate) - Method in interface com.googlecode.flyway.core.api.migration.spring.SpringJdbcMigration
Executes this migration.
migrate() - Method in class com.googlecode.flyway.core.Flyway
Starts the database migration.
MigrationChecksumProvider - Interface in com.googlecode.flyway.core.api.migration
Migration implementors that also implement this interface will be able to specify their checksum (for validation), instead of having it automatically computed or default to null (for Java Migrations).
MigrationInfo - Interface in com.googlecode.flyway.core.api
Info about a migration.
MigrationInfoProvider - Interface in com.googlecode.flyway.core.api.migration
Migration implementors that also implement this interface will be able to specify their version and description manually, instead of having it automatically computed.
MigrationInfoService - Interface in com.googlecode.flyway.core.api
Info about all migrations, including applied, current and pending with details and status.
MigrationState - Enum in com.googlecode.flyway.core.api
The state of a migration.
MigrationType - Enum in com.googlecode.flyway.core.api
Type of migration.
MigrationVersion - Class in com.googlecode.flyway.core.api
A version of a migration.
MigrationVersion(String) - Constructor for class com.googlecode.flyway.core.api.MigrationVersion
Creates a Version using this version string.

P

pending() - Method in interface com.googlecode.flyway.core.api.MigrationInfoService
Retrieves the full set of infos about pending migrations, available locally, but not yet applied to the DB.

R

repair() - Method in class com.googlecode.flyway.core.Flyway
Repairs the Flyway metadata table after a failed migration.

S

setCleanOnValidationError(boolean) - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call clean or not when a validation error occurs.
setDataSource(DataSource) - Method in class com.googlecode.flyway.core.Flyway
Sets the datasource to use.
setDataSource(String, String, String) - Method in class com.googlecode.flyway.core.Flyway
Sets the datasource to use.
setDisableInitCheck(boolean) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use initOnMigrate instead. Will be removed in Flyway 3.0.
setEncoding(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the encoding of Sql migrations.
setIgnoreFailedFutureMigration(boolean) - Method in class com.googlecode.flyway.core.Flyway
Ignores failed future migrations when reading the metadata table.
setInitDescription(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the description to tag an existing schema with when executing init.
setInitialDescription(String) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setInitDescription(String) instead. Will be removed in Flyway 3.0.
setInitialVersion(SchemaVersion) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setInitVersion(MigrationVersion) instead. Will be removed in Flyway 3.0.
setInitialVersion(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setInitVersion(MigrationVersion) instead. Will be removed in Flyway 3.0.
setInitialVersion(String) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setInitVersion(String) instead. Will be removed in Flyway 3.0.
setInitOnMigrate(boolean) - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call init when migrate is executed against a non-empty schema with no metadata table.
setInitVersion(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
Sets the version to tag an existing schema with when executing init.
setInitVersion(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the version to tag an existing schema with when executing init.
setLocations(String...) - Method in class com.googlecode.flyway.core.Flyway
Sets the locations on the classpath to scan recursively for migrations.
setOutOfOrder(boolean) - Method in class com.googlecode.flyway.core.Flyway
Allows migrations to be run "out of order".
setPlaceholderPrefix(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the prefix of every placeholder.
setPlaceholders(Map<String, String>) - Method in class com.googlecode.flyway.core.Flyway
Sets the placeholders to replace in sql migration scripts.
setPlaceholderSuffix(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the suffix of every placeholder.
setSchemas(String...) - Method in class com.googlecode.flyway.core.Flyway
Sets the schemas managed by Flyway.
setSqlMigrationPrefix(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the file name prefix for sql migrations.
setSqlMigrationSuffix(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the file name suffix for sql migrations.
setTable(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the name of the schema metadata table that will be used by Flyway.
setTarget(SchemaVersion) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setTarget(MigrationVersion) instead. Will be removed in Flyway 3.0.
setTarget(MigrationVersion) - Method in class com.googlecode.flyway.core.Flyway
Sets the target version up to which Flyway should run migrations.
setTarget(String) - Method in class com.googlecode.flyway.core.Flyway
Sets the target version up to which Flyway should run migrations.
setValidateOnMigrate(boolean) - Method in class com.googlecode.flyway.core.Flyway
Whether to automatically call validate or not when running migrate.
setValidationErrorMode(ValidationErrorMode) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setCleanOnValidationError instead. Will be removed in Flyway 3.0.
setValidationMode(ValidationMode) - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use setValidateOnMigrate instead. Will be removed in Flyway 3.0.
SpringJdbcMigration - Interface in com.googlecode.flyway.core.api.migration.spring
Interface to be implemented by Spring Jdbc Java Migrations.
status() - Method in class com.googlecode.flyway.core.Flyway
Deprecated.
Use flyway.info().current() instead. Will be removed in Flyway 3.0.

T

toString() - Method in class com.googlecode.flyway.core.api.MigrationVersion
 

V

validate() - Method in class com.googlecode.flyway.core.Flyway
Validate applied migration with classpath migrations to detect accidental changes.
valueOf(String) - Static method in enum com.googlecode.flyway.core.api.MigrationState
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum com.googlecode.flyway.core.api.MigrationType
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.googlecode.flyway.core.api.MigrationState
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum com.googlecode.flyway.core.api.MigrationType
Returns an array containing the constants of this enum type, in the order they are declared.
A C E F G H I J L M P R S T V 

Copyright © 2013. All Rights Reserved.