339ac11c40b85d5628399594be967fbbfdd7a01f
[netvirt.git] / natservice / api / src / main / java / org / opendaylight / netvirt / natservice / api / SwitchInfo.java
1 /*
2  * Copyright (c) 2018 Red Hat, 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
9 package org.opendaylight.netvirt.natservice.api;
10
11 import java.util.Set;
12 import org.opendaylight.yangtools.yang.common.Uint64;
13
14 public final class SwitchInfo {
15
16     Uint64 dpnId;
17
18     Set<String> providerNets;
19
20     public Uint64 getDpnId() {
21         return dpnId;
22     }
23
24     public void setDpnId(Uint64 dpnId) {
25         this.dpnId = dpnId;
26     }
27
28     public Set<String> getProviderNets() {
29         return providerNets;
30     }
31
32     public void setProviderNets(Set<String> providerNets) {
33         this.providerNets = providerNets;
34     }
35
36
37 }