org.drools.impl.adapters.ActivationAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
package org.drools.impl.adapters;
import org.drools.definition.rule.Rule;
import org.drools.runtime.rule.Activation;
import org.drools.runtime.rule.FactHandle;
import org.drools.runtime.rule.PropagationContext;
import org.kie.api.runtime.rule.Match;
import java.util.ArrayList;
import java.util.List;
public class ActivationAdapter implements Activation {
private final Match delegate;
public ActivationAdapter(Match delegate) {
this.delegate = delegate;
}
public Rule getRule() {
return new RuleAdapter(delegate.getRule());
}
public PropagationContext getPropagationContext() {
throw new UnsupportedOperationException("This operation is no longer supported");
}
public List extends FactHandle> getFactHandles() {
List result = new ArrayList();
for (org.kie.api.runtime.rule.FactHandle fh : delegate.getFactHandles()) {
result.add(new FactHandleAdapter(fh));
}
return result;
}
public List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy