-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWait.java
More file actions
39 lines (34 loc) · 858 Bytes
/
Wait.java
File metadata and controls
39 lines (34 loc) · 858 Bytes
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
import java.util.*;
import java.io.*;
import java.lang.*;
public class Wait implements Serializable {
private static final long serialVersionUID = 1L;
//for ID generation
private WaitIdServer waitIdServer;
private Product product;
private Client client;
private int quantity;
private int id;
public Wait(Client client, Product product, int quantity){
this.client = client;
this.product = product;
this.quantity = quantity;
waitIdServer = WaitIdServer.instance();
this.id = waitIdServer.getId();
}
public int getId() {
return id;
}
public Product getProduct(){
return product;
}
public Client getClient(){
return client;
}
public int getQuantity(){
return quantity;
}
public void setQuantity(int newQuantity){
this.quantity = newQuantity;
}
}