blob: 7d54ec8435ca343b0065238ed97b0f57fcc3e5ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/*
Copyright (c) Xerox Corporation 1998-2002. All rights reserved.
Use and copying of this software and preparation of derivative works based
upon this software are permitted. Any distribution of this software or
derivative works must comply with all applicable United States export control
laws.
This software is made available AS IS, and Xerox Corporation makes no warranty
about the software, its performance or its conformity to any specification.
|<--- this code is formatted to fit into 80 columns --->|
|<--- this code is formatted to fit into 80 columns --->|
|<--- this code is formatted to fit into 80 columns --->|
*/
package telecom;
/**
* Connections are circuits between customers
* There are two kinds: local and long distance
* see subclasses at the end of this file.
*/
public abstract class Connection {
public static final int PENDING = 0;
public static final int COMPLETE = 1;
public static final int DROPPED = 2;
Customer caller, receiver;
private int state = PENDING;
/**
* Creatte a new Connection between a and b
*/
Connection(Customer a, Customer b) {
this.caller = a;
this.receiver = b;
}
/**
* what is the state of the connection?
*/
public int getState(){
return state;
}
/**
* get the customer who initiated this connection
*/
public Customer getCaller() { return caller; }
/**
* get the customer who received this connection
*/
public Customer getReceiver() { return receiver; }
/**
* Called when a call is picked up. This means the b side has picked up
* and the connection should now complete itself and start passing data.
*/
void complete() {
state = COMPLETE;
System.out.println("connection completed");
}
/**
* Called when the connection is dropped from a call. Is intended to
* free up any resources the connection was consuming.
*/
void drop() {
state = DROPPED;
System.out.println("connection dropped");
}
/**
* Is customer c connected by this connection?
*/
public boolean connects(Customer c){
return (caller == c || receiver == c);
}
}
|