blob: be2e25b4b0c66a1cac5c5a7eba53b7d874753b8e [file] [log] [blame]
Luca Prete83bac342016-12-06 19:42:05 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Luca Prete83bac342016-12-06 19:42:05 -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 */
16
17package org.onosproject.sdnip.config;
18
19import org.onosproject.core.ApplicationId;
20import org.onosproject.net.EncapsulationType;
21import org.onosproject.net.config.Config;
22
23/**
24 * Configuration object for SDN-IP config.
25 */
26public class SdnIpConfig extends Config<ApplicationId> {
27
28 public static final String CONFIG_KEY = "sdnip";
29
30 public static final String ENCAPSULTATION = "encap";
31
32 /**
33 * Retrieves the encapsulation type set.
34 *
35 * @return the encapsulation type configured
36 */
37 public EncapsulationType encap() {
38 EncapsulationType encapType = EncapsulationType.NONE;
39 if (object.hasNonNull(ENCAPSULTATION)) {
40 String encap = object.get(ENCAPSULTATION).asText();
41 encapType = EncapsulationType.enumFromString(encap);
42 }
43
44 return encapType;
45 }
46
47 /**
48 * Sets the encapsulation type used by SDN-IP.
49 *
50 * @param encap the encapsulation type
51 */
52 public void setEncap(EncapsulationType encap) {
53 object.put(ENCAPSULTATION, encap.toString());
54 }
55}