blob: 004bb330d278c3685a1c0a67cb24b37a5b55b0f6 [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;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080031 private final IntentData data;
32 private final IntentData stored;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080033
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080034 /**
35 * Creates a withdraw request phase.
36 *
37 * @param processor intent processor to be passed to intent process phases
38 * generated after this phase
39 * @param intentData intent data to be processed
40 * @param stored intent data stored in the store
41 */
42 WithdrawRequest(IntentProcessor processor, IntentData intentData, IntentData stored) {
Sho SHIMIZUb0a47d42015-02-19 13:26:30 -080043 this.processor = checkNotNull(processor);
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080044 this.data = checkNotNull(intentData);
45 this.stored = checkNotNull(stored);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080046 }
47
48 @Override
Sho SHIMIZU36a8a6e2015-02-13 15:38:45 -080049 public Optional<IntentProcessPhase> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080050 //TODO perhaps we want to validate that the pending and current are the
51 // same version i.e. they are the same
52 // Note: this call is not just the symmetric version of submit
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080053 data.setInstallables(stored.installables());
54 return Optional.of(new Withdrawing(processor, data));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080055 }
56}