blob: 87fa2f59bd11686e90efa53da39577a6ba2faa51 [file] [log] [blame]
Kartikey Dubeyadeb26e2019-10-01 12:18:35 +00001/*
2 * Copyright 2018-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.opencord.aaa;
18
19public class AaaSupplicantMachineStats {
20
21 private String sessionId;
22
23 private String sessionName;
24
25 private long sessionDuration;
26
27 private long totalFramesReceived;
28
29 private long totalFramesSent;
30
31 private long totalPacketsRecieved;
32
33 private long totalPacketsSent;
34
35 private long totalOctetRecieved;
36
37 private long totalOctetSent;
38
39 private String eapolType;
40
41 private String srcMacAddress;
42
43 private String sessionTerminateReason;
44
45 public String getSessionId() {
46 return sessionId;
47 }
48
49 public void setSessionId(String sessionId) {
50 this.sessionId = sessionId;
51 }
52
53 public String getSessionName() {
54 return sessionName;
55 }
56
57 public void setSessionName(String sessionName) {
58 this.sessionName = sessionName;
59 }
60
61 public long getSessionDuration() {
62 return sessionDuration;
63 }
64
65 public void setSessionDuration(long sessionDuration) {
66 this.sessionDuration = sessionDuration;
67 }
68
69 public long getTotalFramesReceived() {
70 return totalFramesReceived;
71 }
72
73 public void setTotalFramesReceived(long totalFramesReceived) {
74 this.totalFramesReceived = totalFramesReceived;
75 }
76
77 public String getEapolType() {
78 return eapolType;
79 }
80
81 public void setEapolType(String eapolType) {
82 this.eapolType = eapolType;
83 }
84
85 public String getSrcMacAddress() {
86 return srcMacAddress;
87 }
88
89 public void setSrcMacAddress(String srcMacAddress) {
90 this.srcMacAddress = srcMacAddress;
91 }
92
93 public long getTotalFramesSent() {
94 return totalFramesSent;
95 }
96
97 public void setTotalFramesSent(long totalFramesSent) {
98 this.totalFramesSent = totalFramesSent;
99 }
100
101 public long getTotalPacketsRecieved() {
102 return totalPacketsRecieved;
103 }
104
105 public void setTotalPacketsRecieved(long totalPacketsRecieved) {
106 this.totalPacketsRecieved = totalPacketsRecieved;
107 }
108
109 public long getTotalPacketsSent() {
110 return totalPacketsSent;
111 }
112
113 public void setTotalPacketsSent(long totalPacketsSent) {
114 this.totalPacketsSent = totalPacketsSent;
115 }
116
117 public long getTotalOctetRecieved() {
118 return totalOctetRecieved;
119 }
120
121 public void setTotalOctetRecieved(long totalOctetRecieved) {
122 this.totalOctetRecieved = totalOctetRecieved;
123 }
124
125 public long getTotalOctetSent() {
126 return totalOctetSent;
127 }
128
129 public void setTotalOctetSent(long totalOctetSent) {
130 this.totalOctetSent = totalOctetSent;
131 }
132
133 public String getSessionTerminateReason() {
134 return sessionTerminateReason;
135 }
136
137 public void setSessionTerminateReason(String sessionTerminateReason) {
138 this.sessionTerminateReason = sessionTerminateReason;
139 }
140
141}