blob: df3422abd7a793cdd58b7f2405cd6bff34353195 [file] [log] [blame]
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -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.BatchWrite;
19import org.onosproject.net.intent.Intent;
20
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -080021import static com.google.common.base.Preconditions.checkNotNull;
22import static org.onosproject.net.intent.IntentState.FAILED;
23
24/**
25 * A processing phase after compilation failure.
26 */
27class CompilingFailed implements CompletedIntentUpdate {
28
29 private final Intent intent;
30
31 /**
32 * Create an instance from the submitted intent.
33 *
34 * @param intent submitted intent.
35 */
36 CompilingFailed(Intent intent) {
37 this.intent = checkNotNull(intent);
38 }
39
40 @Override
Sho SHIMIZUfd0cd8c2015-01-28 08:16:58 -080041 public void writeAfterExecution(BatchWrite batchWrite) {
42 batchWrite.setState(intent, FAILED);
43 batchWrite.removeInstalledIntents(intent.id());
44 }
45}