blob: 52e8bc114aa26c5c0857ef18ff6092eec4f31cb8 [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
24// TODO pull out the IntentUpdate inner classes
25class InstallRequest implements IntentUpdate {
26
27 // TODO: define an interface and use it, instead of IntentManager
28 private final IntentManager intentManager;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080029 private final IntentData pending;
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080030 private final Optional<IntentData> current;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080031
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080032 InstallRequest(IntentManager intentManager, IntentData intentData, Optional<IntentData> current) {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080033 this.intentManager = checkNotNull(intentManager);
Brian O'Connor0e271dc2015-02-04 18:20:25 -080034 this.pending = checkNotNull(intentData);
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080035 this.current = checkNotNull(current);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080036 }
37
38 @Override
39 public Optional<IntentUpdate> execute() {
Sho SHIMIZU95a7baf2015-02-12 09:15:57 -080040 return Optional.of(new Compiling(intentManager, pending, current.orElse(null)));
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080041 }
42}