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

org.drools.verifier.components.Consequence Maven / Gradle / Ivy

There is a newer version: 9.44.0.Final
Show newest version
package org.drools.verifier.components;

import org.drools.verifier.report.components.Cause;

public interface Consequence extends Cause {

	public static class ConsequenceType {

		public static final ConsequenceType TEXT = new ConsequenceType(0);

		private final int index;

		private ConsequenceType(int i) {
			index = i;
		}
	}

	public int getId();

	public ConsequenceType getConsequenceType();

	public int getRuleId();

	public String getRuleName();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy