Uses of Class
migratedb.v1.core.api.Checksum
-
Packages that use Checksum Package Description migratedb.v1.core.api MigrateDbException, MigrationInfo and related classes.migratedb.v1.core.api.internal.schemahistory migratedb.v1.core.api.migration Interfaces for Migration implementors.migratedb.v1.core.api.resolver Interfaces for Migration resolvers.migratedb.v1.core.internal.resolver Private API.migratedb.v1.core.internal.schemahistory Private API. -
-
Uses of Checksum in migratedb.v1.core.api
Methods in migratedb.v1.core.api that return Checksum Modifier and Type Method Description ChecksumChecksum.Builder. build()Returns the final checksum and resets the state of this builder (as if it were freshly constructed).@Nullable ChecksumMigrationInfo. getChecksum()static ChecksumChecksum. parse(String string)Parses the string value of a checksum. -
Uses of Checksum in migratedb.v1.core.api.internal.schemahistory
Methods in migratedb.v1.core.api.internal.schemahistory that return Checksum Modifier and Type Method Description @Nullable ChecksumAppliedMigration. getChecksum()Constructors in migratedb.v1.core.api.internal.schemahistory with parameters of type Checksum Constructor Description AppliedMigration(int installedRank, @Nullable Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, Timestamp installedOn, String installedBy, int executionTime, boolean success)Creates a new applied migration. -
Uses of Checksum in migratedb.v1.core.api.migration
Methods in migratedb.v1.core.api.migration that return Checksum Modifier and Type Method Description default @Nullable ChecksumJavaMigration. getChecksum(Configuration configuration)ChecksumScriptMigration. getChecksum(Configuration configuration) -
Uses of Checksum in migratedb.v1.core.api.resolver
Methods in migratedb.v1.core.api.resolver that return Checksum Modifier and Type Method Description ChecksumResolvedMigration. getChecksum()Methods in migratedb.v1.core.api.resolver with parameters of type Checksum Modifier and Type Method Description booleanResolvedMigration. checksumMatches(Checksum checksum) -
Uses of Checksum in migratedb.v1.core.internal.resolver
Methods in migratedb.v1.core.internal.resolver that return Checksum Modifier and Type Method Description static ChecksumChecksumCalculator. calculate(Collection<Resource> resources, Configuration configuration)Calculates the checksum of these resources.ChecksumResolvedMigrationImpl. getChecksum()Methods in migratedb.v1.core.internal.resolver with parameters of type Checksum Modifier and Type Method Description booleanResolvedMigrationImpl. checksumMatches(Checksum checksum)Constructors in migratedb.v1.core.internal.resolver with parameters of type Checksum Constructor Description ResolvedMigrationImpl(Version version, String description, String script, Checksum checksum, Checksum equivalentChecksum, MigrationType type, String locationDescription, MigrationExecutor executor) -
Uses of Checksum in migratedb.v1.core.internal.schemahistory
Methods in migratedb.v1.core.internal.schemahistory with parameters of type Checksum Modifier and Type Method Description abstract voidSchemaHistory. addAppliedMigration(int installedRank, Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, int executionTime, boolean success)voidSchemaHistory. addAppliedMigration(Version version, String description, MigrationType type, String script, @Nullable Checksum checksum, int executionTime, boolean success)Records a new applied migration.
-