blob: 7940cf7a1564103bade23f552c8d37a301b66c23 [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
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -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
21import java.util.Optional;
22
23import static com.google.common.base.Preconditions.checkNotNull;
24
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080025/**
26 * Represents a phase of requesting a withdraw of an intent.
27 */
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080028final class WithdrawRequest implements IntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080029
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080030 private final IntentProcessor processor;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080031 private final IntentData pending;
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080032 private final IntentData current;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080033
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080034 WithdrawRequest(IntentProcessor processor, IntentData intentData, IntentData current) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080035 this.processor = checkNotNull(processor);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080036 this.pending = checkNotNull(intentData);
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080037 this.current = checkNotNull(current);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080038 }
39
40 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080041 public Optional<IntentProcessPhase> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080042 //TODO perhaps we want to validate that the pending and current are the
43 // same version i.e. they are the same
44 // Note: this call is not just the symmetric version of submit
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080045 return Optional.of(new WithdrawCoordinating(processor, pending, current));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080046 }
47}