blob: 44847a09587da71243a451ab648275898d95712a [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -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 SHIMIZU5cb438e2015-02-04 13:46:00 -080017
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080019import org.onosproject.net.intent.impl.IntentProcessor;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080020
Brian O'Connorf0c5a052015-04-27 00:34:53 -070021import java.util.Optional;
22
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080023import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080024import static org.onosproject.net.intent.IntentState.WITHDRAWING;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080025
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080026/**
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080027 * Represents a phase where an intent is withdrawing.
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080028 */
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080029class Withdrawing extends FinalIntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080030
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080031 private final IntentProcessor processor;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080032 private final IntentData data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080033
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080034 /**
35 * Creates a withdrawing phase.
36 *
37 * @param processor intent processor that does work for withdrawing
38 * @param data intent data containing an intent to be withdrawn
39 */
40 Withdrawing(IntentProcessor processor, IntentData data) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080041 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080042 this.data = checkNotNull(data);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080043 this.data.setState(WITHDRAWING);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080044 }
45
46 @Override
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080047 protected void preExecute() {
Brian O'Connorf0c5a052015-04-27 00:34:53 -070048 processor.apply(Optional.of(data), Optional.empty());
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080049 }
50
51 @Override
52 public IntentData data() {
53 return data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080054 }
55}