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

liquibase.report.PendingChangesetInfo Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.report;

import liquibase.changelog.ChangeSet;
import lombok.AllArgsConstructor;
import lombok.Data;

@Data
@AllArgsConstructor
public class PendingChangesetInfo {
    private String changesetAuthor;
    private String changesetId;
    private String changelogFile;
    private String comment;
    private String labels;
    private String contexts;
    private String reason;
    private ChangeSet changeSet;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy