blob: 12a9c2cb42f642303205ae50122f575a5e298250 [file] [log] [blame]
sanghoshin46297d22015-11-03 17:51:24 +09001/*
2 * Copyright 2014 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.openstackswitching;
17
18import org.onosproject.core.ApplicationId;
19import org.onosproject.net.config.Config;
20import org.onosproject.net.config.basics.BasicElementConfig;
21
22/**
23 * Handles configuration for OpenstackSwitching app.
24 */
25public class OpenstackSwitchingConfig extends Config<ApplicationId> {
26 public static final String DONOTPUSH = "do_not_push_flows";
27
28 /**
29 * Returns the flag whether the app pushes flows or not.
30 *
31 * @return the flag or false if not set
32 */
33 public boolean doNotPushFlows() {
34 String flag = get(DONOTPUSH, "false");
35 return Boolean.valueOf(flag);
36 }
37
38 /**
39 * Sets the flag whether the app pushes flows or not.
40 *
41 * @param flag the flag whether the app pushes flows or not
42 * @return self
43 */
44 public BasicElementConfig doNotPushFlows(boolean flag) {
45 return (BasicElementConfig) setOrClear(DONOTPUSH, flag);
46 }
47}