/** * Copyright 2010 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.audit.event; import java.io.IOException; import java.io.ObjectInput; import java.io.ObjectOutput; public class RuleFlowNodeLogEvent extends RuleFlowLogEvent { private String nodeId; private String nodeName; private String nodeInstanceId; /** * Create a new ruleflow node log event. * * @param type The type of event. This can only be RULEFLOW_NODE_START or RULEFLOW_NODE_END. * @param processId The id of the process * @param processName The name of the process */ public RuleFlowNodeLogEvent(final int type, final String nodeId, final String nodeName, final String nodeInstanceId, final String processId, final String processName, final long processInstanceId) { super( type, processId, processName, processInstanceId ); this.nodeId = nodeId; this.nodeName = nodeName; this.nodeInstanceId = nodeInstanceId; } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { super.readExternal(in); nodeId = (String) in.readObject(); nodeName = (String) in.readObject(); nodeInstanceId = (String) in.readObject(); } public void writeExternal(ObjectOutput out) throws IOException { super.writeExternal(out); out.writeObject(nodeId); out.writeObject(nodeName); out.writeObject(nodeInstanceId); } public String getNodeId() { return nodeId; } public String getNodeName() { return nodeName; } public String getNodeInstanceId() { return nodeInstanceId; } public String toString() { String msg = null; switch ( this.getType() ) { case BEFORE_RULEFLOW_NODE_TRIGGERED : msg = "BEFORE RULEFLOW NODE TRIGGERED"; break; case AFTER_RULEFLOW_NODE_TRIGGERED : msg = "AFTER RULEFLOW NODE TRIGGERED"; break; default: return super.toString(); } return msg + " node:" + nodeName + "[id=" + nodeId + "] process:" + getProcessName() + "[id=" + getProcessId() + "]"; } }