Fix to show Node name if present when adding ports to Subnet Gateway on the devices...
[controller.git] / opendaylight / 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 String nodePortId;
14     private String nodePortName;
15
16     public String getNodeName() {
17         return nodeName;
18     }
19     public void setNodeName(String nodeName) {
20         this.nodeName = nodeName;
21     }
22     public String getNodeId() {
23         return nodeId;
24     }
25     public void setNodeId(String nodeId) {
26         this.nodeId = nodeId;
27     }
28     public String getNodePortId() {
29         return nodePortId;
30     }
31     public void setNodePortId(String nodePortId) {
32         this.nodePortId = nodePortId;
33     }
34     public String getNodePortName() {
35         return nodePortName;
36     }
37     public void setNodePortName(String nodePortName) {
38         this.nodePortName = nodePortName;
39     }
40 }