-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathReport.java
79 lines (71 loc) · 1.88 KB
/
Report.java
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
import java.io.Serializable;
/**
* This class creates the Report object that contains all the details of any suspicious activity report that the
* customer makes
*/
public class Report implements Serializable
{
CA customer;
AD admin;
String description;
/**
* Constructor for Report
* @param customer the customer that made the suspicious activity report
* @param admin the admin that receives the suspicious activity report
* @param description the details of the report being made
*/
public Report(CA customer, AD admin, String description)
{
this.customer = customer;
this.admin = admin;
this.description = description;
}
/**
* Sets the customer that made the report
* @param customer the customer that made the report
*/
public void setCustomer(CA customer)
{
this.customer = customer;
}
/**
* Gets the customer that made the report
* @return the customer that made the report
*/
public CA getCustomer()
{
return customer;
}
/**
* Sets the admin that receives the report
* @param admin the admin that receives the report
*/
public void setAdmin(AD admin)
{
this.admin = admin;
}
/**
* Gets the admin that receives the report
* @return the admin that receives the report
*/
public AD getAdmin()
{
return admin;
}
/**
* Sets the description of the report that the customer made
* @param description a string describing the report details
*/
public void setDescription(String description)
{
this.description = description;
}
/**
* Gets the description of the report that the customer made
* @return a string describing the report details
*/
public String getDescription()
{
return description;
}
}