blob: 3fcf97b7cc297d928ba1cddf5abe5e4fbce84512 [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
2 * Copyright 2015 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 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080016package org.onosproject.net.intent.impl.phase;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080017
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080019
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080020/**
21 * Represent a phase where the install has failed.
22 */
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080023class ReplaceFailed extends AbstractFailed {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080024
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080025 /**
26 * Create an instance with the specified data.
27 *
28 * @param intentData intentData
29 */
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080030 ReplaceFailed(IntentData intentData) {
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -080031 super(intentData);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080032 }
33}