~ubuntu-branches/ubuntu/precise/jcsp/precise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.jcsp.net2.mobile;

import java.io.Serializable;

import org.jcsp.net2.NetChannelLocation;
import org.jcsp.net2.NodeID;

/**
 * @author Kevin
 */
final class ClassRequest
    implements Serializable
{
    final NodeID originatingNode;
    final String className;
    final NetChannelLocation returnLocation;

    ClassRequest(NodeID originator, String name, NetChannelLocation response)
    {
        this.originatingNode = originator;
        this.className = name;
        this.returnLocation = response;
    }
}