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

org.drools.compiler.compiler.io.File Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package org.drools.compiler.compiler.io;

import java.io.IOException;
import java.io.InputStream;


public interface File extends Resource {      
    String getName();
    
    boolean exists();    

    InputStream getContents() throws IOException;
    
    void setContents(InputStream is) throws IOException;

    void create(InputStream is) throws IOException;
    
    Path getPath();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy