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

com.jslsolucoes.db.migrate.se.MigrateResource Maven / Gradle / Ivy

There is a newer version: 1.0.24
Show newest version
package com.jslsolucoes.db.migrate.se;

import java.io.File;
import java.nio.file.Path;

public class MigrateResource {

    private File file;
    private Long version;

    public MigrateResource(Path path, Long version) {
	this.file = path.toFile();
	this.version = version;
    }

    public Long getVersion() {
	return version;
    }

    public void setVersion(Long version) {
	this.version = version;
    }

    public File getFile() {
	return file;
    }

    public void setFile(File file) {
	this.file = file;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy