blob: f7a2867657fb8a898e6a14fa6dfc6a1804cd4912 [file] [log] [blame]
Yoonseon Han096cea02017-05-15 15:10:41 -07001/*
2 * Copyright 2017-present Open Networking Foundation
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 */
16
17package org.onosproject.incubator.net.virtual.impl.intent.phase;
18
19import org.onosproject.incubator.net.virtual.NetworkId;
20import org.onosproject.incubator.net.virtual.impl.intent.VirtualIntentProcessor;
21import org.onosproject.net.intent.IntentData;
22
23import java.util.Optional;
24
25import static com.google.common.base.Preconditions.checkNotNull;
26import static org.onosproject.net.intent.IntentState.WITHDRAWING;
27
28/**
29 * Represents a phase where an intent is withdrawing.
30 */
31final class VirtualIntentWithdrawing extends VirtualFinalIntentProcessPhase {
32
33 private final NetworkId networkId;
34 private final VirtualIntentProcessor processor;
35 private final IntentData data;
36
37 /**
38 * Creates a withdrawing phase.
39 *
40 * @param networkId virtual network identifier
41 * @param processor intent processor that does work for withdrawing
42 * @param data intent data containing an intent to be withdrawn
43 */
44 VirtualIntentWithdrawing(NetworkId networkId, VirtualIntentProcessor processor,
45 IntentData data) {
46 this.networkId = checkNotNull(networkId);
47 this.processor = checkNotNull(processor);
48 this.data = checkNotNull(data);
49 this.data.setState(WITHDRAWING);
50 }
51
52 @Override
53 protected void preExecute() {
54 processor.apply(networkId, Optional.of(data), Optional.empty());
55 }
56
57 @Override
58 public IntentData data() {
59 return data;
60 }
61}