1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.module.client.remoting; |
8 | |
|
9 | |
import org.mule.api.config.MuleProperties; |
10 | |
import org.mule.module.client.RemoteDispatcher; |
11 | |
|
12 | |
import java.io.Serializable; |
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | 0 | public class ServerHandshake implements Serializable |
19 | |
{ |
20 | |
public static final String SERVER_HANDSHAKE_PROPERTY = MuleProperties.PROPERTY_PREFIX + "CLIENT_HANDSHAKE"; |
21 | |
|
22 | |
private String wireFormatClass; |
23 | |
|
24 | |
public String getWireFormatClass() |
25 | |
{ |
26 | 0 | return wireFormatClass; |
27 | |
} |
28 | |
|
29 | |
public void setWireFormatClass(String wireFormatClass) |
30 | |
{ |
31 | 0 | this.wireFormatClass = wireFormatClass; |
32 | 0 | } |
33 | |
} |