blob: d68ef69547ce22ce1800f5b705b29db85c775300 [file] [log] [blame]
Sho SHIMIZUbb4d8272015-02-12 08:30:26 -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 */
16package org.onosproject.net.intent.impl;
17
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/**
24 * A common parent class of a class representing failure
25 * as IntentUpdate subclass.
26 */
27abstract class AbstractFailed extends CompletedIntentUpdate {
28
29 private final IntentData intentData;
30
31 /**
32 * Create an instance with the specified data.
33 *
34 * @param intentData intentData
35 */
36 AbstractFailed(IntentData intentData) {
37 this.intentData = checkNotNull(intentData);
38 this.intentData.setState(FAILED);
39 }
40
41 @Override
42 public IntentData data() {
43 return intentData;
44 }
45}