Added more ignorable files to .gitignore
[ovsdb.git] / ovsdb / src / main / java / org / opendaylight / ovsdb / lib / table / Controller.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 import org.opendaylight.ovsdb.lib.table.internal.Table;
13
14 import com.fasterxml.jackson.annotation.JsonIgnore;
15
16 public class Controller  extends Table<Controller> {
17
18     public static final Name<Controller> NAME = new Name<Controller>("Controller") {};
19     private String target;
20
21     public String getTarget() {
22         return target;
23     }
24
25     public void setTarget(String target) {
26         this.target = target;
27     }
28
29     @Override
30     @JsonIgnore
31     public Name<Controller> getTableName() {
32         return NAME;
33     }
34
35     @Override
36     public String toString() {
37         return "Controller [target=" + target + "]";
38     }
39 }