Lisp processing additional fixes
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / lisp / info / container / EndpointHost.java
1 /*
2  * Copyright (c) 2017 Cisco Systems. 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.groupbasedpolicy.renderer.vpp.lisp.info.container;
9
10 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
11
12 /**
13  * Created by Shakib Ahmed on 7/14/17.
14  */
15 public class EndpointHost {
16     DataBroker hostDataBroker;
17     String hostName;
18
19     public EndpointHost(DataBroker hostDataBroker, String hostName) {
20         this.hostDataBroker = hostDataBroker;
21         this.hostName = hostName;
22     }
23
24     public DataBroker getHostDataBroker() {
25         return hostDataBroker;
26     }
27
28     public String getHostName() {
29         return hostName;
30     }
31 }