KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tirsen > nanning > samples > prevayler > IdentifyingCall


1 package com.tirsen.nanning.samples.prevayler;
2
3 import com.tirsen.nanning.Invocation;
4
5 public class IdentifyingCall extends MarshallingCall {
6     static final long serialVersionUID = 8545095375648929875L;
7
8     public IdentifyingCall(Invocation invocation) throws Exception JavaDoc {
9         super(invocation, new IdentifyingMarshaller());
10     }
11
12     protected Marshaller createMarshaller() {
13         return new IdentifyingMarshaller();
14     }
15 }
16
Popular Tags