blob: 7a4a5a45f34dadead18f556718d38310e2dc7ed5 [file] [log] [blame]
Andreas Pantelopoulos19416412018-06-12 13:19:52 -07001/*
2 * Copyright 2016-present Open Networking Foundation
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 */
16
17package org.onosproject.net.config.basics;
18
19import org.onosproject.net.ConnectPoint;
20import org.onosproject.net.config.Config;
21
22/**
23 * Configuration for enabling/disabling host learning.
24 */
25public class HostLearningConfig extends Config<ConnectPoint> {
26 private static final String ENABLED = "enabled";
27
28 @Override
29 public boolean isValid() {
30 return isBoolean(ENABLED, FieldPresence.MANDATORY);
31 }
32
33 public Boolean hostLearningEnabled() {
34 return get(ENABLED, true);
35 }
36
37 public void setEnabled(String boolString) {
38 object.put(ENABLED, boolString);
39 }
40}