Contents
-
Deprecated Fields
The Location class should no longer know about possible location types, which can now be implemented
by plugins, and should be treated as a POJO.
-
Deprecated Methods
Use the root path instead. This path will not be a genuine path for wildcard locations, whereas the
root path is always a path.
The Location class should no longer know about possible location types, which can now be implemented
by plugins, and should be treated as a POJO. Calling code ought to know what type of location they are dealing
with, or check the prefix directly. Replace with `AwsS3LocationHandler.PREFIX.equals(location.getPrefix())` (in
flyway-locations-s3 module)
The Location class should no longer know about possible location types, which can now be implemented
by plugins, and should be treated as a POJO. Calling code ought to know what type of location they are dealing
with, or check the prefix directly. Replace with `CoreLocationPrefix.isClassPath(location)`
The Location class should no longer know about possible location types, which can now be implemented
by plugins, and should be treated as a POJO. Calling code ought to know what type of location they are dealing
with, or check the prefix directly. Replace with `CoreLocationPrefix.isFileSystem(location)`
The Location class should no longer know about possible location types, which can now be implemented
by plugins, and should be treated as a POJO. Calling code ought to know what type of location they are dealing
with, or check the prefix directly. Replace with `GcsLocationHandler.PREFIX.equals(location.getPrefix())` (in
flyway-locations-gcs module)
This method was previously for internal use by Flyway and is specific to the calling code use case.
The implementation-specific logic can be removed using
ReadOnlyLocationHandler.
This method was previously for internal use by Flyway and is specific to the calling code use case.
Usages can be inlined into calling code.