blob: fdb8668ef8f8a4cd8cd23c8e07b3f5e391e1a46d [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 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 */
weibitf32383b2014-10-22 10:17:31 -070016package org.onlab.onos.net.intent;
17
Thomas Vachuskae0f804a2014-10-27 23:40:48 -070018import org.onlab.onos.core.ApplicationId;
weibitf32383b2014-10-22 10:17:31 -070019import org.onlab.onos.net.ConnectPoint;
20
21/**
weibit7e583462014-10-23 10:14:05 -070022 * An optical layer Intent for a connectivity from one Transponder port to another
weibitf32383b2014-10-22 10:17:31 -070023 * Transponder port. No trafficSelector as well as trafficTreament are needed.
24 *
25 */
weibit7e583462014-10-23 10:14:05 -070026public class OpticalConnectivityIntent extends Intent {
weibitf32383b2014-10-22 10:17:31 -070027 protected ConnectPoint src;
28 protected ConnectPoint dst;
29
30 /**
Thomas Vachuska4b420772014-10-30 16:46:17 -070031 * Creates an optical connectivity intent between the specified
32 * connection points.
weibitf32383b2014-10-22 10:17:31 -070033 *
Thomas Vachuska4b420772014-10-30 16:46:17 -070034 * @param appId application identification
35 * @param src the source transponder port
36 * @param dst the destination transponder port
weibitf32383b2014-10-22 10:17:31 -070037 */
weibit7e583462014-10-23 10:14:05 -070038 public OpticalConnectivityIntent(ApplicationId appId, ConnectPoint src, ConnectPoint dst) {
39 super(id(OpticalConnectivityIntent.class, src, dst),
40 appId, null);
weibitf32383b2014-10-22 10:17:31 -070041 this.src = src;
42 this.dst = dst;
43 }
44
45 /**
46 * Constructor for serializer.
47 */
48 protected OpticalConnectivityIntent() {
49 super();
50 this.src = null;
51 this.dst = null;
52 }
53
54 /**
Thomas Vachuska4b420772014-10-30 16:46:17 -070055 * Returns the source transponder port.
weibitf32383b2014-10-22 10:17:31 -070056 *
Thomas Vachuska4b420772014-10-30 16:46:17 -070057 * @return source transponder port
weibitf32383b2014-10-22 10:17:31 -070058 */
59 public ConnectPoint getSrcConnectPoint() {
60 return src;
61 }
62
63 /**
Thomas Vachuska4b420772014-10-30 16:46:17 -070064 * Returns the destination transponder port.
weibitf32383b2014-10-22 10:17:31 -070065 *
Thomas Vachuska4b420772014-10-30 16:46:17 -070066 * @return source transponder port
weibitf32383b2014-10-22 10:17:31 -070067 */
68 public ConnectPoint getDst() {
69 return dst;
70 }
71}