Package ch.tocco.nice2.dbrefactoring.api
Interface ChangelogRequest
- All Known Implementing Classes:
DefaultChangelogRequest
public interface ChangelogRequest
-
Method Summary
Modifier and TypeMethodDescription@Nullable CallbackHandler
The callback handler to receive status information while the changelog file is created.If this set is not empty, only those modules included here are used to create the changelog.getTypes()
The changelog types for this request.@Nullable Nice2Version
Include only changelogs whose version is greater or equal to the returned one.boolean
Whether to apply finalizing node processors to the generated changelog.
-
Method Details
-
getVersion
Include only changelogs whose version is greater or equal to the returned one. Ifnull
is returned, all changelogs are included. -
getTypes
List<ChangelogType> getTypes()The changelog types for this request. -
getIncludedModules
If this set is not empty, only those modules included here are used to create the changelog. -
getCallbackHandler
The callback handler to receive status information while the changelog file is created. -
isApplyFinalizer
boolean isApplyFinalizer()Whether to apply finalizing node processors to the generated changelog.
-