blob: f58a7a8dd049fc8a3384d24a4f16f1c4acdfacf3 [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
Sho SHIMIZU37a24a82015-02-09 09:12:21 -080024/**
25 * Represents a phase of requesting a withdraw of an intent.
26 */
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080027class WithdrawRequest implements IntentUpdate {
28
29 // TODO: define an interface and use it, instead of IntentManager
30 private final IntentManager intentManager;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080031 private final IntentData pending;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080032
Brian O'Connor0e271dc2015-02-04 18:20:25 -080033 WithdrawRequest(IntentManager intentManager, IntentData intentData) {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080034 this.intentManager = checkNotNull(intentManager);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080035 this.pending = checkNotNull(intentData);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080036 }
37
38 @Override
39 public Optional<IntentUpdate> execute() {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080040 //FIXME... store hack
41 IntentData current = intentManager.store.getIntentData(pending.key());
42 //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 SHIMIZU37a24a82015-02-09 09:12:21 -080045 return Optional.of(new WithdrawCoordinating(intentManager, pending, current));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080046 }
47}