1 /*2 * JBoss, the OpenSource J2EE webOS3 *4 * Distributable under LGPL license.5 * See terms of license at gnu.org.6 *7 */8 package org.jboss.remoting.invocation;9 10 /**11 * @author <a HREF="mailto:telrod@e2technologies.net">Tom Elrod</a>12 */13 public class OnewayInvocation extends RemoteInvocation14 {15 static final long serialVersionUID = -5957766205400999538L;16 17 public OnewayInvocation(Object param)18 {19 super(null, new Object []{param});20 }21 }22