aboutsummaryrefslogtreecommitdiff
path: root/agent/src/main/java/moe/yuuta/dn42peering/agent/ip/Address.java
blob: c55e39f65603e25c2701aeb3952a540e60e3879b (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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package moe.yuuta.dn42peering.agent.ip;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

@JsonIgnoreProperties(ignoreUnknown = true)
public class Address{

	@JsonProperty("qdisc")
	private String qdisc;

	@JsonProperty("ifindex")
	private Integer ifindex;

	@JsonProperty("max_mtu")
	private Integer maxMtu;

	@JsonProperty("flags")
	private List<String> flags;

	@JsonProperty("txqlen")
	private Integer txqlen;

	@JsonProperty("num_rx_queues")
	private Integer numRxQueues;

	@JsonProperty("min_mtu")
	private Integer minMtu;

	@JsonProperty("mtu")
	private Integer mtu;

	@JsonProperty("link_type")
	private String linkType;

	@JsonProperty("gso_max_segs")
	private Integer gsoMaxSegs;

	@JsonProperty("ifname")
	private String ifname;

	@JsonProperty("num_tx_queues")
	private Integer numTxQueues;

	@JsonProperty("promiscuity")
	private Integer promiscuity;

	@JsonProperty("operstate")
	private String operstate;

	@JsonProperty("addr_info")
	private List<AddrInfoItem> addrInfo;

	@JsonProperty("gso_max_size")
	private Integer gsoMaxSize;

	@JsonProperty("group")
	private String group;

	@JsonProperty("linkinfo")
	private Linkinfo linkinfo;

	public void setQdisc(String qdisc){
		this.qdisc = qdisc;
	}

	public String getQdisc(){
		return qdisc;
	}

	public void setIfindex(Integer ifindex){
		this.ifindex = ifindex;
	}

	public Integer getIfindex(){
		return ifindex;
	}

	public void setMaxMtu(Integer maxMtu){
		this.maxMtu = maxMtu;
	}

	public Integer getMaxMtu(){
		return maxMtu;
	}

	public void setFlags(List<String> flags){
		this.flags = flags;
	}

	public List<String> getFlags(){
		return flags;
	}

	public void setTxqlen(Integer txqlen){
		this.txqlen = txqlen;
	}

	public Integer getTxqlen(){
		return txqlen;
	}

	public void setNumRxQueues(Integer numRxQueues){
		this.numRxQueues = numRxQueues;
	}

	public Integer getNumRxQueues(){
		return numRxQueues;
	}

	public void setMinMtu(Integer minMtu){
		this.minMtu = minMtu;
	}

	public Integer getMinMtu(){
		return minMtu;
	}

	public void setMtu(Integer mtu){
		this.mtu = mtu;
	}

	public Integer getMtu(){
		return mtu;
	}

	public void setLinkType(String linkType){
		this.linkType = linkType;
	}

	public String getLinkType(){
		return linkType;
	}

	public void setGsoMaxSegs(Integer gsoMaxSegs){
		this.gsoMaxSegs = gsoMaxSegs;
	}

	public Integer getGsoMaxSegs(){
		return gsoMaxSegs;
	}

	public void setIfname(String ifname){
		this.ifname = ifname;
	}

	public String getIfname(){
		return ifname;
	}

	public void setNumTxQueues(Integer numTxQueues){
		this.numTxQueues = numTxQueues;
	}

	public Integer getNumTxQueues(){
		return numTxQueues;
	}

	public void setPromiscuity(Integer promiscuity){
		this.promiscuity = promiscuity;
	}

	public Integer getPromiscuity(){
		return promiscuity;
	}

	public void setOperstate(String operstate){
		this.operstate = operstate;
	}

	public String getOperstate(){
		return operstate;
	}

	public void setAddrInfo(List<AddrInfoItem> addrInfo){
		this.addrInfo = addrInfo;
	}

	public List<AddrInfoItem> getAddrInfo(){
		return addrInfo;
	}

	public void setGsoMaxSize(Integer gsoMaxSize){
		this.gsoMaxSize = gsoMaxSize;
	}

	public Integer getGsoMaxSize(){
		return gsoMaxSize;
	}

	public void setGroup(String group){
		this.group = group;
	}

	public String getGroup(){
		return group;
	}

	public void setLinkinfo(Linkinfo linkinfo){
		this.linkinfo = linkinfo;
	}

	public Linkinfo getLinkinfo(){
		return linkinfo;
	}
}