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

« back to all changes in this revision

Viewing changes to src/org/jcsp/net2/mobile/ClassRequest.java

  • Committer: Bazaar Package Importer
  • Author(s): Miguel Landaeta
  • Date: 2010-06-20 18:12:26 UTC
  • Revision ID: james.westby@ubuntu.com-20100620181226-8yg8d9rjjjiuy7oz
Tags: upstream-1.1-rc4
ImportĀ upstreamĀ versionĀ 1.1-rc4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.jcsp.net2.mobile;
 
2
 
 
3
import java.io.Serializable;
 
4
 
 
5
import org.jcsp.net2.NetChannelLocation;
 
6
import org.jcsp.net2.NodeID;
 
7
 
 
8
/**
 
9
 * @author Kevin
 
10
 */
 
11
final class ClassRequest
 
12
    implements Serializable
 
13
{
 
14
    final NodeID originatingNode;
 
15
    final String className;
 
16
    final NetChannelLocation returnLocation;
 
17
 
 
18
    ClassRequest(NodeID originator, String name, NetChannelLocation response)
 
19
    {
 
20
        this.originatingNode = originator;
 
21
        this.className = name;
 
22
        this.returnLocation = response;
 
23
    }
 
24
}