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

org.drools.repository.events.AssetMove Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.repository.events;

public class AssetMove extends AssetChange {

    private String oldFileName;
    private String format;
    private String oldPath;
    private String newFileFormat;
    private String newPath;
    
    public AssetMove(String oldFileName,
                     String format,
                     String oldPath,
                     String newFileFormat,
                     String newPath) {
        super();
        this.oldFileName = oldFileName;
        this.format = format;
        this.oldPath = oldPath;
        this.newFileFormat = newFileFormat;
        this.newPath = newPath;
    }
    
    public String getFormat() {
        return format;
    }
    public String getNewFileFormat() {
        return newFileFormat;
    }
    public String getNewPath() {
        return newPath;
    }
    public String getOldFileName() {
        return oldFileName;
    }
    public String getOldPath() {
        return oldPath;
    }

    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy