| |
|
| liquibase.change.custom.CustomChange
CustomChange | interface CustomChange (Code) | | Interface to implement when creating a custom change. Actual custom changes implementations need to
implement CustomSqlChange or CustomTaskChange.
See http://www.liquibase.org/manual/custom_refactoring_class for more information.
|
Method Summary | |
public String | getConfirmationMessage() | public void | setFileOpener(FileOpener fileOpener) Sets the fileOpener that should be used for any file loading and resource
finding for files that are provided by the user. | public void | 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. |
getConfirmationMessage | public String getConfirmationMessage()(Code) | | Confirmation message to be displayed after the change is executed
a String containing the message after the change is executed |
setFileOpener | public void setFileOpener(FileOpener fileOpener)(Code) | | Sets the fileOpener that should be used for any file loading and resource
finding for files that are provided by the user.
|
setUp | public void setUp() throws SetupException(Code) | | 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.
|
|
|
|