Package de.xima.fc.liquibase.context
Interface ILiquibaseContext
-
- All Superinterfaces:
AutoCloseable
public interface ILiquibaseContext extends AutoCloseable
Context for handling liquibase tasks and closing the used resources afterwards- Author:
- XIMA MEDIA GmbH, Dresden
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFilePath()
Gets the path of the changelog fileliquibase.Liquibase
getLiquibase()
Gets the liquibase instanceliquibase.resource.ResourceAccessor
getResourceAccessor()
Gets the resource accessor-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
getLiquibase
liquibase.Liquibase getLiquibase()
Gets the liquibase instance- Returns:
- the liquibase instance
-
getFilePath
String getFilePath()
Gets the path of the changelog file- Returns:
- the path of the changelog file
-
getResourceAccessor
liquibase.resource.ResourceAccessor getResourceAccessor()
Gets the resource accessor- Returns:
- the resource accessor
-
-