📄 validatemessagetype.java
字号:
/* * $Id: ValidateMessageType.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.bpm.jbpm.actions;import org.mule.util.ClassUtils;import org.jbpm.JbpmException;import org.jbpm.graph.exe.ExecutionContext;/** * Throws an exception if the incoming message's class is not as expected. * * <action class="org.mule.transport.bpm.jbpm.actions.ValidateMessageType"> * <expectedType>com.mycompany.MyClass</expectedType> * </action> * * @param expectedType the expected class type * @param strict if true, the class must match exactly, otherwise it can be a subclass * @throws JbpmException */public class ValidateMessageType extends IntegrationActionHandler{ private static final long serialVersionUID = 1L; protected String expectedType; protected boolean strict = false; public void execute(ExecutionContext executionContext) throws Exception { super.execute(executionContext); Object message = getIncomingMessage(); if (message == null) { throw new JbpmException("Incoming message is null."); } Class expectedClass = ClassUtils.loadClass(expectedType, this.getClass()); boolean match; if (strict) { match = message.getClass().equals(expectedClass); } else { match = expectedClass.isAssignableFrom(message.getClass()); } if (!match) { throw new JbpmException("Incoming message type is " + message.getClass() + ", expected type is " + expectedType); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -