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

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

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

public class AssetDelete extends AssetChange {

    private String fileName;
    private String format;
    private String path;
    
    public String getFileName() {
        return fileName;
    }
    
    public String getFormat() {
        return format;
    }
    public String getPath() {
        return path;
    }

    public AssetDelete(String fileName,
                       String format,
                       String path) {
        super();
        this.fileName = fileName;
        this.format = format;
        this.path = path;
    }

    
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy