blob: 5a5518eb5af6ac8c24d1547aa788536cea3756ef [file] [log] [blame]
Brian O'Connor59a92852015-07-30 19:08:24 -07001/*
Thomas Vachuska52f2cd12018-11-08 21:20:04 -08002 * Copyright 2018-present Open Networking Foundation
Brian O'Connor59a92852015-07-30 19:08:24 -07003 *
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 */
16package org.onosproject.incubator.net.domain;
17
Thomas Vachuska4c571ae2015-09-10 16:31:59 -070018import com.google.common.annotations.Beta;
Brian O'Connor59a92852015-07-30 19:08:24 -070019import org.onosproject.core.ApplicationId;
20import org.onosproject.net.ConnectPoint;
21
22/**
23 * Provides connectivity through a domain.
24 */
Thomas Vachuska4c571ae2015-09-10 16:31:59 -070025@Beta
Brian O'Connor59a92852015-07-30 19:08:24 -070026public class TunnelPrimitive extends IntentPrimitive {
27
28 private final ConnectPoint one;
29 private final ConnectPoint two;
30
31 public TunnelPrimitive(ApplicationId appId, ConnectPoint one, ConnectPoint two) {
32 super(appId);
33 this.one = one;
34 this.two = two;
35 }
Aaron Kruglikovc61d2d12015-09-01 11:10:48 -070036
37 /**
38 * The getter for the first connection point associated with a tunnel.
39 *
40 * @return the first connection point
41 */
42 public ConnectPoint one() {
43 return one;
44 }
45
46 /**
47 * The getter for the second connection point associated with a tunnel.
48 * @return the second connection point
49 */
50 public ConnectPoint two() {
51 return two;
52 }
Brian O'Connor59a92852015-07-30 19:08:24 -070053}