Package org.drools.audit.event

Examples of org.drools.audit.event.RuleFlowVariableLogEvent


                event.getProcessInstance().getId()) );
    }
   
    public void beforeVariableChange(RuleFlowVariableChangeEvent event,
                                     WorkingMemory workingMemory) {
    filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.BEFORE_VARIABLE_INSTANCE_CHANGED,
      event.getVariableId(),
      event.getVariableInstanceId(),
      event.getProcessInstance().getProcessId(),
      event.getProcessInstance().getProcessName(),
      event.getProcessInstance().getId(),
View Full Code Here


      event.getValue() == null ? "null" : event.getValue().toString() ));
    }

    public void afterVariableChange(RuleFlowVariableChangeEvent event,
                                    WorkingMemory workingMemory) {
    filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.AFTER_VARIABLE_INSTANCE_CHANGED,
      event.getVariableId(),
      event.getVariableInstanceId(),
      event.getProcessInstance().getProcessId(),
      event.getProcessInstance().getProcessName(),
      event.getProcessInstance().getId(),
View Full Code Here

                event.getProcessInstance().getId()) );
    }
   
    public void beforeVariableChange(RuleFlowVariableChangeEvent event,
                                     WorkingMemory workingMemory) {
    filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.BEFORE_VARIABLE_INSTANCE_CHANGED,
      event.getVariableId(),
      event.getVariableInstanceId(),
      event.getProcessInstance().getProcessId(),
      event.getProcessInstance().getProcessName(),
      event.getProcessInstance().getId(),
View Full Code Here

      event.getValue() == null ? "null" : event.getValue().toString() ));
    }

    public void afterVariableChange(RuleFlowVariableChangeEvent event,
                                    WorkingMemory workingMemory) {
    filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.AFTER_VARIABLE_INSTANCE_CHANGED,
      event.getVariableId(),
      event.getVariableInstanceId(),
      event.getProcessInstance().getProcessId(),
      event.getProcessInstance().getProcessName(),
      event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId()) );
    }

    public void beforeVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.BEFORE_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getId(),
            event.getNewValue() == null ? "null" : event.getNewValue().toString()) );
    }

    public void afterVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.AFTER_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId()) );
    }

    public void beforeVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.BEFORE_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getId(),
            event.getNewValue() == null ? "null" : event.getNewValue().toString()) );
    }

    public void afterVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.AFTER_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId()) );
    }

    public void beforeVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.BEFORE_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

            event.getProcessInstance().getId(),
            event.getNewValue() == null ? "null" : event.getNewValue().toString()) );
    }

    public void afterVariableChanged(ProcessVariableChangedEvent event) {
        filterLogEvent(new RuleFlowVariableLogEvent(LogEvent.AFTER_VARIABLE_INSTANCE_CHANGED,
            event.getVariableId(),
            event.getVariableInstanceId(),
            event.getProcessInstance().getProcessId(),
            event.getProcessInstance().getProcessName(),
            event.getProcessInstance().getId(),
View Full Code Here

TOP

Related Classes of org.drools.audit.event.RuleFlowVariableLogEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.