Make sure invokeOperation is set once
[controller.git] / opendaylight / adsal / web / devices / src / main / java / org / opendaylight / controller / devices / web / SubnetGatewayPortBean.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
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 package org.opendaylight.controller.devices.web;
9
10 public class SubnetGatewayPortBean {
11     private String nodeName;
12     private String nodeId;
13     private PortJsonBean port;
14     private String nodePortId;
15     private String nodePortName;
16
17     public String getNodeName() {
18         return nodeName;
19     }
20     public void setNodeName(String nodeName) {
21         this.nodeName = nodeName;
22     }
23     public String getNodeId() {
24         return nodeId;
25     }
26     public void setNodeId(String nodeId) {
27         this.nodeId = nodeId;
28     }
29     public String getNodePortId() {
30         return nodePortId;
31     }
32     public void setNodePortId(String nodePortId) {
33         this.nodePortId = nodePortId;
34     }
35     public String getNodePortName() {
36         return nodePortName;
37     }
38     public void setNodePortName(String nodePortName) {
39         this.nodePortName = nodePortName;
40     }
41 }