blob: df7f4519e5cbf051d956dbb6d93436ccfab06beb [file] [log] [blame]
Yoonseon Han096cea02017-05-15 15:10:41 -07001/*
2 * Copyright 2017-present Open Networking Foundation
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.incubator.net.virtual.impl.intent;
18
19import org.onosproject.incubator.net.virtual.impl.intent.phase.VirtualFinalIntentProcessPhase;
20import org.onosproject.net.intent.IntentData;
21
22/**
23 * Represents a phase where an intent is not compiled for a virtual network.
24 * This should be used if a new version of the intent will immediately override
25 * this one.
26 */
27public final class VirtualIntentSkipped extends VirtualFinalIntentProcessPhase {
28
29 private static final VirtualIntentSkipped SINGLETON = new VirtualIntentSkipped();
30
31 /**
32 * Returns a shared skipped phase.
33 *
34 * @return skipped phase
35 */
36 public static VirtualIntentSkipped getPhase() {
37 return SINGLETON;
38 }
39
40 // Prevent object construction; use getPhase()
41 private VirtualIntentSkipped() {
42 }
43
44 @Override
45 public IntentData data() {
46 return null;
47 }
48}