org.kie.memorycompiler.resources.ResourceReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatiko-decision-dmn-adapter Show documentation
Show all versions of automatiko-decision-dmn-adapter Show documentation
DMN Decision (Adapter) for Automatiko Engine
package org.kie.memorycompiler.resources;
import java.util.Collection;
public interface ResourceReader {
boolean isAvailable(final String pResourceName);
byte[] getBytes(final String pResourceName);
Collection getFileNames();
void mark();
Collection getModifiedResourcesSinceLastMark();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy