blob: 2e8e67a58a2bb6c867cdfece7e50b28a6e0230a2 [file] [log] [blame]
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -08003 *
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
Brian O'Connor0e271dc2015-02-04 18:20:25 -080018import org.onosproject.net.intent.IntentData;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080019
20import static com.google.common.base.Preconditions.checkNotNull;
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080021import static org.onosproject.net.intent.IntentState.WITHDRAWN;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080022
Sho SHIMIZUd3dcaa12015-02-13 13:48:51 -080023/**
24 * Represents a phase where an intent has been withdrawn.
25 */
Sho SHIMIZU662c3db2015-02-23 16:59:01 -080026final class Withdrawn extends FinalIntentProcessPhase {
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080027
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080028 private final IntentData data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080029
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080030 /**
31 * Create a withdrawn phase.
32 *
33 * @param data intent data containing an intent to be withdrawn
34 */
35 Withdrawn(IntentData data) {
Yuta HIGUCHI4f8a3772017-05-16 20:23:49 -070036 this.data = IntentData.nextState(checkNotNull(data), WITHDRAWN);
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080037 }
38
39 @Override
Brian O'Connor0e271dc2015-02-04 18:20:25 -080040 public IntentData data() {
Sho SHIMIZUee2aa652015-02-25 18:56:43 -080041 return data;
Sho SHIMIZU5cb438e2015-02-04 13:46:00 -080042 }
43}