blob: 1a2da58bc76691abffe8033d17c7c103c263674a [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 */
16package org.onosproject.net.intent.impl;
17
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080018import org.onosproject.net.intent.IntentData;
19
20import java.util.Optional;
21
22import static com.google.common.base.Preconditions.checkNotNull;
23
24class WithdrawRequest implements IntentUpdate {
25
26 // TODO: define an interface and use it, instead of IntentManager
27 private final IntentManager intentManager;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080028 private final IntentData pending;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080029
Brian O'Connor0e271dc2015-02-04 18:20:25 -080030 WithdrawRequest(IntentManager intentManager, IntentData intentData) {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080031 this.intentManager = checkNotNull(intentManager);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080032 this.pending = checkNotNull(intentData);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080033 }
34
35 @Override
36 public Optional<IntentUpdate> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080037 //FIXME... store hack
38 IntentData current = intentManager.store.getIntentData(pending.key());
39 //TODO perhaps we want to validate that the pending and current are the
40 // same version i.e. they are the same
41 // Note: this call is not just the symmetric version of submit
42 return Optional.of(new Withdrawing(intentManager, pending, current));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080043 }
44}