Added more ignorable files to .gitignore
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / lib / table / Qos.java
1 /*
2  * [[ Authors will Fill in the Copyright header ]]
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Brent Salisbury, Madhu Venugopal, Evan Zeller
9  */
10 package org.opendaylight.ovsdb.lib.table;
11
12
13 import org.opendaylight.ovsdb.lib.notation.OvsDBMap;
14 import org.opendaylight.ovsdb.lib.notation.UUID;
15 import org.opendaylight.ovsdb.lib.table.internal.Table;
16
17 import com.fasterxml.jackson.annotation.JsonIgnore;
18
19 public class Qos extends Table<Qos> {
20
21     public static final Name<Qos> NAME = new Name<Qos>("QoS") {};
22
23     private OvsDBMap<Integer, UUID> queues;
24     private String type;
25     private OvsDBMap<String, String> other_config;
26     private OvsDBMap<String, String> external_ids;
27
28     public Qos() {
29     }
30
31     public OvsDBMap<Integer, UUID> getQueues() {
32         return queues;
33     }
34
35     public void setQueues(OvsDBMap<Integer, UUID> queues) {
36         this.queues = queues;
37     }
38
39     public String getType() {
40         return type;
41     }
42
43     public void setType(String type) {
44         this.type = type;
45     }
46
47     public OvsDBMap<String, String> getOther_config() {
48         return other_config;
49     }
50
51     public void setOther_config(OvsDBMap<String, String> other_config) {
52         this.other_config = other_config;
53     }
54
55     public OvsDBMap<String, String> getExternal_ids() {
56         return external_ids;
57     }
58
59     public void setExternal_ids(OvsDBMap<String, String> external_ids) {
60         this.external_ids = external_ids;
61     }
62
63     @Override
64     @JsonIgnore
65     public Name<Qos> getTableName() {
66         return NAME;
67     }
68
69     @Override
70     public String toString() {
71         return "Qos [queues=" + queues + ", type=" + type + ", other_config="
72                 + other_config + ", external_ids=" + external_ids + "]";
73     }
74
75     public enum Column implements org.opendaylight.ovsdb.lib.table.internal.Column<Qos> {
76         queues,
77         type,
78         other_config,
79         external_ids}
80 }