blob: 062fe56f6a0b5f1277085ffe4c27d16e1482376c [file] [log] [blame]
janani bf41dec32017-03-24 18:44:07 +05301/*
2 * Copyright 2017-present Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.l3vpn.netl3vpn;
18
19/**
20 * Representation of VPN instance name and its respective site role for each
21 * site.
22 */
23public class VpnSiteRole {
24
25 /**
26 * VPN instance name of the site.
27 */
28 private String name;
29
30 /**
31 * Site role of the site.
32 */
33 private VpnType role;
34
35 /**
36 * Creates VPN instance site role.
37 *
38 * @param n VPN name
39 * @param r site role
40 */
41 public VpnSiteRole(String n, VpnType r) {
42 name = n;
43 role = r;
44 }
45
46 /**
47 * Returns the VPN instance name of the site.
48 *
49 * @return VPN name
50 */
janani b35f6cbc2017-03-24 21:56:58 +053051 public String name() {
janani bf41dec32017-03-24 18:44:07 +053052 return name;
53 }
54
55 /**
56 * Returns the site role.
57 *
58 * @return site role
59 */
janani b35f6cbc2017-03-24 21:56:58 +053060 public VpnType role() {
janani bf41dec32017-03-24 18:44:07 +053061 return role;
62 }
63}