OWL ITS + 탐지시스템(인터넷 진흥원)
jhjang
2021-10-14 d680ff9fa4298ad3c0cd12f5f9d87f6c51110480
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
package kr.wisestone.owl.monitor;
 
import com.google.common.collect.Lists;
import java.util.Date;
import java.util.List;
 
/**
 * Created by wisestone on 2018-02-09.
 */
public class Email {
    public Date received;
    public String from;
    public List<String> to = Lists.newArrayList();
    public List<String> cc = Lists.newArrayList();
    public String subject;
    public String body;
    public List<EmailAttachment> attachments = Lists.newArrayList();
 
    public Email(){}
 
    public Date getReceived() {
        return received;
    }
 
    public void setReceived(Date received) {
        this.received = received;
    }
 
    public String getFrom() {
        return from;
    }
 
    public void setFrom(String from) {
        this.from = from;
    }
 
    public List<String> getTo() {
        return to;
    }
 
    public void setTo(List<String> to) {
        this.to = to;
    }
 
    public List<String> getCc() {
        return cc;
    }
 
    public void setCc(List<String> cc) {
        this.cc = cc;
    }
 
    public String getSubject() {
        return subject;
    }
 
    public void setSubject(String subject) {
        this.subject = subject;
    }
 
    public String getBody() {
        return body;
    }
 
    public void setBody(String body) {
        this.body = body;
    }
 
    public List<EmailAttachment> getAttachments() {
        return attachments;
    }
 
    public void setAttachments(List<EmailAttachment> attachments) {
        this.attachments = attachments;
    }
}