public FactHandle getFactHandle(Object object) {
return this.commandService.execute( new GetFactHandleCommand( object ) );
}
public <T extends org.kie.api.runtime.rule.FactHandle> Collection<T> getFactHandles() {
return (Collection<T>) this.commandService.execute( new GetFactHandlesCommand() );
}