blob: 26ba85867ee1dba5f4fd945a6ad9e0e9749b52a5 [file] [log] [blame]
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -08003 *
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 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080016package org.onosproject.net.intent.impl.phase;
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080017
18import org.onosproject.net.intent.IntentData;
19
20import static com.google.common.base.Preconditions.checkNotNull;
21import static org.onosproject.net.intent.IntentState.FAILED;
22
23/**
Brian O'Connorf0c5a052015-04-27 00:34:53 -070024 * Represents a phase where the compile has failed.
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080025 */
Brian O'Connorf0c5a052015-04-27 00:34:53 -070026public class Failed extends FinalIntentProcessPhase {
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080027
Sho SHIMIZUd1a33b62016-01-19 18:40:29 -080028 private final IntentData data;
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080029
30 /**
31 * Create an instance with the specified data.
32 *
Sho SHIMIZUd1a33b62016-01-19 18:40:29 -080033 * @param data intentData
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080034 */
Sho SHIMIZUd1a33b62016-01-19 18:40:29 -080035 Failed(IntentData data) {
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -070036 this.data = IntentData.nextState(checkNotNull(data), FAILED);
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080037 }
38
39 @Override
40 public IntentData data() {
Sho SHIMIZUd1a33b62016-01-19 18:40:29 -080041 return data;
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080042 }
43}