blob: 9198d0eeb6b7c26e424dbbd3ba141cd5e31265d3 [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.flow.FlowRuleOperations;
19import org.onosproject.net.intent.IntentData;
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080020import org.onosproject.net.intent.impl.IntentProcessor;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080021
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080022import java.util.Optional;
23
24import static com.google.common.base.Preconditions.checkNotNull;
25
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080026/**
27 * Represents a phase of withdrawing an intent with calling
Jonathan Hartd0ba2172015-02-11 13:54:33 -080028 * {@link org.onosproject.net.flow.FlowRuleService}.
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080029 */
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080030class Withdrawing implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080031
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080032 private final IntentProcessor processor;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080033 private final IntentData pending;
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080034 private final FlowRuleOperations flowRules;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080035
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080036 Withdrawing(IntentProcessor processor, IntentData pending, FlowRuleOperations flowRules) {
37 this.processor = checkNotNull(processor);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080038 this.pending = checkNotNull(pending);
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080039 this.flowRules = checkNotNull(flowRules);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080040 }
41
42 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080043 public Optional<IntentProcessPhase> execute() {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080044 processor.applyFlowRules(flowRules);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080045 return Optional.of(new Withdrawn(pending));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080046 }
47}