18853a9289218a36a9796ed0c0766d1abf39e081
[groupbasedpolicy.git] / renderers / vpp / src / main / java / org / opendaylight / groupbasedpolicy / renderer / vpp / lisp / flat / overlay / RoutingInfo.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.flat.overlay;
9
10 /**
11  * Created by Shakib Ahmed on 5/4/17.
12  */
13 public class RoutingInfo {
14     private String ProtocolName;
15     private int count = 0;
16
17     public String getProtocolName() {
18         return ProtocolName;
19     }
20
21     public void setProtocolName(String protocolName) {
22         ProtocolName = protocolName;
23     }
24
25     public int getCount() {
26         return count;
27     }
28
29     public void incrementCount() {
30         count++;
31     }
32 }