blob: ac7035b851e41eedb23a85f3ae8c1a0cdeede274 [file] [log] [blame]
Thomas Vachuska00b5d4f2018-10-30 15:13:20 -07001/*
2 * Copyright 2018-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.provider.host.impl;
18
19/**
20 * Name/Value constants for properties.
21 */
22
23public final class OsgiPropertyConstants {
24
25 private OsgiPropertyConstants() {
26 }
27
28 public static final String HOST_REMOVAL_ENABLED = "hostRemovalEnabled:Boolean=true";
29 public static final boolean HOST_REMOVAL_ENABLED_DEFAULT = true;
30
31 public static final String REQUEST_ARP = "requestArp";
32 public static final boolean REQUEST_ARP_DEFAULT = true;
33
34 public static final String REQUEST_NDP = "requestIpv6ND";
35 public static final boolean REQUEST_NDP_DEFAULT = false;
36
Yi Tseng11f95b52019-05-08 14:03:19 -070037 public static final String REQUEST_NDP_RS_RA = "requestIpv6NdpRsRa";
38 public static final boolean REQUEST_NDP_RS_RA_DEFAULT = false;
39
Thomas Vachuska00b5d4f2018-10-30 15:13:20 -070040 public static final String USE_DHCP = "useDhcp";
41 public static final boolean USE_DHCP_DEFAULT = false;
42
43 public static final String USE_DHCP6 = "useDhcp6";
44 public static final boolean USE_DHCP6_DEFAULT = false;
45
46 public static final String REQUEST_INTERCEPTS_ENABLED = "requestInterceptsEnabled";
47 public static final boolean REQUEST_INTERCEPTS_ENABLED_DEFAULT = true;
48
49 public static final String MULTIHOMING_ENABLED = "multihomingEnabled";
50 public static final boolean MULTIHOMING_ENABLED_DEFAULT = false;
51}