CheckMessageIDOperation.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.messagedriven.support; /** * Check the message id * * @author <a href="mailto:adrian@jboss.com>Adrian Brock</a> * @version <tt>$Revision: 1.4</tt> */ public class CheckMessageIDOperation extends CheckMessagePropertyOperation { protected int msgNo; protected String id; public CheckMessageIDOperation(BasicMessageDrivenUnitTest test, int msgNo, String id) { super(test, msgNo, SendMessageOperation.MESSAGEID, id); } }
CheckMessageIDOperation.java |