blob: e5e4acd248625f60dbc51f5a70c37bbc5156c029 [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
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Ray Milkey9f74c082015-02-11 15:40:16 -080019import org.onosproject.net.intent.IntentState;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080020
21import static com.google.common.base.Preconditions.checkNotNull;
Brian O'Connor0e271dc2015-02-04 18:20:25 -080022import static org.onosproject.net.intent.IntentState.WITHDRAWING;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080023
Sho SHIMIZUd3dcaa12015-02-13 13:48:51 -080024/**
25 * Represents a phase where an intent has been withdrawn.
26 */
Sho SHIMIZUd2d99742015-02-05 15:55:14 -080027class Withdrawn extends CompletedIntentUpdate {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080028
Brian O'Connor0e271dc2015-02-04 18:20:25 -080029 private final IntentData intentData;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080030
Brian O'Connor0e271dc2015-02-04 18:20:25 -080031 Withdrawn(IntentData intentData) {
Ray Milkey9f74c082015-02-11 15:40:16 -080032 this(intentData, WITHDRAWING);
33 }
34
35 Withdrawn(IntentData intentData, IntentState newState) {
Brian O'Connor0e271dc2015-02-04 18:20:25 -080036 this.intentData = checkNotNull(intentData);
Ray Milkey9f74c082015-02-11 15:40:16 -080037 this.intentData.setState(newState);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080038 }
39
40 @Override
Brian O'Connor0e271dc2015-02-04 18:20:25 -080041 public IntentData data() {
42 return intentData;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080043 }
44}