Package | Description |
---|---|
liquibase.change |
The change package contains the available database "changes".
|
liquibase.change.core |
Technically, a Change expresses an intention for alter the structure of the Database.
|
liquibase.change.custom |
Although Liquibase tries to provide a wide range of database refactorings, there are times you may want to create
your own custom refactoring class.
|
liquibase.changelog | |
liquibase.changelog.visitor |
Modifier and Type | Method and Description |
---|---|
void |
AbstractChange.finishInitialization()
Default implementation is a no-op
|
void |
Change.finishInitialization()
This method will be called by the changlelog parsing process after all of the
properties have been set to allow the task to do any additional initialization logic.
|
Modifier and Type | Method and Description |
---|---|
void |
SQLFileChange.finishInitialization() |
Modifier and Type | Method and Description |
---|---|
void |
CustomChange.setUp()
This method will be called after the no arg constructor and all of the
properties have been set to allow the task to do any heavy tasks or
more importantly generate any exceptions to report to the user about
the settings provided.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DatabaseChangeLog.handleChildNode(ParsedNode node,
ResourceAccessor resourceAccessor) |
void |
DatabaseChangeLog.includeAll(String pathName,
boolean isRelativeToChangelogFile,
IncludeAllFilter resourceFilter,
boolean errorIfMissingOrEmpty,
Comparator<String> resourceComparator,
ResourceAccessor resourceAccessor,
ContextExpression includeContexts) |
void |
DatabaseChangeLog.load(ParsedNode parsedNode,
ResourceAccessor resourceAccessor) |
Modifier and Type | Method and Description |
---|---|
List<SetupException> |
ValidatingVisitor.getSetupExceptions() |
Copyright © 2018 Liquibase.org. All rights reserved.