All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.castled.migrations.models.DataMigration Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package io.castled.migrations.models;

import io.castled.migrations.MigrationStatus;
import io.castled.migrations.MigrationType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
public class DataMigration {
    private Long id;
    private MigrationType type;
    private MigrationStatus status;
    private String failureMessage;

    public boolean isPending() {
        return status != MigrationStatus.PROCESSED;
    }

    public boolean isCompleted() {
        return status == MigrationStatus.PROCESSED;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy