blob: a8afde68bb565b134b52b8ad8ba7a2fd4bd4f1bc [file] [log] [blame]
Brian O'Connorc590ebb2016-12-08 18:16:41 -08001/*
2 * Copyright 2016-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 */
16package org.onosproject.net.intent.impl.phase;
17
18import org.onosproject.net.intent.IntentData;
19
20/**
21 * Represents a phase where an intent is not compiled.
22 * <p>
23 * This should be used if a new version of the intent will immediately override
24 * this one.
25 * </p>
26 */
27public final class Skipped extends FinalIntentProcessPhase {
28
29 private static final Skipped SINGLETON = new Skipped();
30
31 /**
32 * Returns a shared skipped phase.
33 *
34 * @return skipped phase
35 */
36 public static Skipped getPhase() {
37 return SINGLETON;
38 }
39
40 // Prevent object construction; use getPhase()
41 private Skipped() {
42 }
43
44 @Override
45 public IntentData data() {
46 return null;
47 }
48}