time_constraint.constr_eval
Class request

java.lang.Object
  |
  +--time_constraint.constr_eval.request
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
binnode, elhistory

public class request
extends java.lang.Object
implements java.io.Serializable

The request class represents the request of a service.
A request is [client, server, method, parameter].

An example of request:

[A; T; x; 5].

Since:
Version 1.2
Version:
1.0
Author:
Daniela Olivieri
See Also:
Serialized Form

Field Summary
 char m
          represents the service requested.
 char o1
          represents the client of the request.
 char o2
          represents the intended server to satisfy the request.
 int p
          represents the parameter of the method m.
 
Constructor Summary
request(char o1, char o2, char m, int p)
          Initializes a new request.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

o1

public char o1
represents the client of the request.
Since:
Version 1.0

o2

public char o2
represents the intended server to satisfy the request.
Since:
Version 1.0

m

public char m
represents the service requested.
Since:
Version 1.0

p

public int p
represents the parameter of the method m.
Since:
Version 1.0
Constructor Detail

request

public request(char o1,
               char o2,
               char m,
               int p)
Initializes a new request. o1 represents the client of the request, o2 represents the intended server to satisfy the request, m represents the service requested, p represents the parameter of the method m.
Since:
Version 1.0