KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > remoting > invocation > OnewayInvocation


1 /*
2  * JBoss, the OpenSource J2EE webOS
3  *
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 RemoteInvocation
14 {
15    static final long serialVersionUID = -5957766205400999538L;
16
17    public OnewayInvocation(Object JavaDoc param)
18    {
19       super(null, new Object JavaDoc[]{param});
20    }
21 }
22
Popular Tags