Broker 10.15 | webMethods Broker Documentation | webMethods Broker Messaging Programmer's Guide | JMS Marshalling | Marshalling API Reference | WmBrokerEventWrapper | Class
 
Class
package com.webmethods.jms.marshal;
 
import com.webmethods.jms.marshal.impl.WmBrokerEventWrapperImpl;
 
public abstract class WmBrokerEventWrapper
{
public static WmBrokerEventWrapper create(Object brokerEvent)
throws Exception
{
return new WmBrokerEventWrapperImpl(brokerEvent);
}
 
public abstract void setDestinationId(String destId);
public abstract String getDestinationId();
}