NetEventEntry.java
3.39 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.sitech.ismp.coll.net.cisco;
import com.sitech.util.JSONUtil;
/**
* Created with IntelliJ IDEA.
* User: mooker
* Date: 14-6-4
* Time: 下午1:59
* To change this template use File | Settings | File Templates.
*/
public class NetEventEntry {
private String neIndex;
private String neInterface;
private String neSrcIpAddress;
private String neInsideSrcIpAddress;
private String neDstIpAddress;
private String neInsideDstIpAddress;
private String neSrcIpPort;
private String neInsideSrcIpPort;
private String neDstIpPort;
private String neInsideDstIpPort;
private String neService;
private String neServiceInformation;
private String neIdentity;
private String neDescription;
public String toString() {
return JSONUtil.toJSON(this);
}
public String getNeIndex() {
return neIndex;
}
public void setNeIndex(String neIndex) {
this.neIndex = neIndex;
}
public String getNeInterface() {
return neInterface;
}
public void setNeInterface(String neInterface) {
this.neInterface = neInterface;
}
public String getNeSrcIpAddress() {
return neSrcIpAddress;
}
public void setNeSrcIpAddress(String neSrcIpAddress) {
this.neSrcIpAddress = neSrcIpAddress;
}
public String getNeInsideSrcIpAddress() {
return neInsideSrcIpAddress;
}
public void setNeInsideSrcIpAddress(String neInsideSrcIpAddress) {
this.neInsideSrcIpAddress = neInsideSrcIpAddress;
}
public String getNeDstIpAddress() {
return neDstIpAddress;
}
public void setNeDstIpAddress(String neDstIpAddress) {
this.neDstIpAddress = neDstIpAddress;
}
public String getNeInsideDstIpAddress() {
return neInsideDstIpAddress;
}
public void setNeInsideDstIpAddress(String neInsideDstIpAddress) {
this.neInsideDstIpAddress = neInsideDstIpAddress;
}
public String getNeSrcIpPort() {
return neSrcIpPort;
}
public void setNeSrcIpPort(String neSrcIpPort) {
this.neSrcIpPort = neSrcIpPort;
}
public String getNeInsideSrcIpPort() {
return neInsideSrcIpPort;
}
public void setNeInsideSrcIpPort(String neInsideSrcIpPort) {
this.neInsideSrcIpPort = neInsideSrcIpPort;
}
public String getNeDstIpPort() {
return neDstIpPort;
}
public void setNeDstIpPort(String neDstIpPort) {
this.neDstIpPort = neDstIpPort;
}
public String getNeInsideDstIpPort() {
return neInsideDstIpPort;
}
public void setNeInsideDstIpPort(String neInsideDstIpPort) {
this.neInsideDstIpPort = neInsideDstIpPort;
}
public String getNeService() {
return neService;
}
public void setNeService(String neService) {
this.neService = neService;
}
public String getNeServiceInformation() {
return neServiceInformation;
}
public void setNeServiceInformation(String neServiceInformation) {
this.neServiceInformation = neServiceInformation;
}
public String getNeIdentity() {
return neIdentity;
}
public void setNeIdentity(String neIdentity) {
this.neIdentity = neIdentity;
}
public String getNeDescription() {
return neDescription;
}
public void setNeDescription(String neDescription) {
this.neDescription = neDescription;
}
}