org.kie.internal.query.InternalQueryService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-internal Show documentation
Show all versions of kie-internal Show documentation
The Drools and jBPM internal API which is NOT backwards compatible between releases.
package org.kie.internal.query;
import java.util.List;
public interface InternalQueryService {
// The query methods should not be available in any public API's
public List query(Object queryWhere, Class queryType, Class resultType);
}