summaryrefslogtreecommitdiffstats
path: root/veslibrary/ves_javalibrary/evel_javalib2/src/main/java/evel_javalibrary/att/com/loadbalance/DeviceData.java
blob: 94f9c4ed86679f1a6161e626f15b21998ff0feb8 (plain)
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
package evel_javalibrary.att.com.loadbalance;
/**************************************************************************//**
 * @file
 * Measurement class
 *
  * This file implements the Measurement Event class which is intended to provide a
 * simple wrapper around the complexity of AT&T's Vendor Event Listener API so
 * that VNFs can use it to send CPU, Memory, Disk Measurements to Collector.
 *
 * License
 * -------
 * Unless otherwise specified, all software contained herein is
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *        http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *****************************************************************************/

import java.io.Serializable;

public class DeviceData implements Serializable{
	
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private String t0bytesIn;
	private String t0bytesOut;
	private String t0packetIn;
	private String t0packetOut;
	
	private String t1Bytesin;
	private String t1Bytesout;
	private String t1Packetsin;
	private String t1Packetsout;
	
	private String Instanceres02Command;

	public String getT0bytesIn() {
		return t0bytesIn;
	}

	public void setT0bytesIn(String t0bytesIn) {
		this.t0bytesIn = t0bytesIn;
	}

	public String getT0bytesOut() {
		return t0bytesOut;
	}

	public void setT0bytesOut(String t0bytesOut) {
		this.t0bytesOut = t0bytesOut;
	}

	public String getT0packetIn() {
		return t0packetIn;
	}

	public void setT0packetIn(String t0packetIn) {
		this.t0packetIn = t0packetIn;
	}

	public String getT0packetOut() {
		return t0packetOut;
	}

	public void setT0packetOut(String t0packetOut) {
		this.t0packetOut = t0packetOut;
	}

	public String getT1Bytesin() {
		return t1Bytesin;
	}

	public void setT1Bytesin(String t1Bytesin) {
		this.t1Bytesin = t1Bytesin;
	}

	public String getT1Bytesout() {
		return t1Bytesout;
	}

	public void setT1Bytesout(String t1Bytesout) {
		this.t1Bytesout = t1Bytesout;
	}

	public String getT1Packetsin() {
		return t1Packetsin;
	}

	public void setT1Packetsin(String t1Packetsin) {
		this.t1Packetsin = t1Packetsin;
	}

	public String getT1Packetsout() {
		return t1Packetsout;
	}

	public void setT1Packetsout(String t1Packetsout) {
		this.t1Packetsout = t1Packetsout;
	}

	public String getInstanceres02Command() {
		return Instanceres02Command;
	}

	public void setInstanceres02Command(String instanceres02Command) {
		Instanceres02Command = instanceres02Command;
	}
	

}