blob: ac63f73450a045c018ee449f1f5d9c7cda378f9c [file] [log] [blame]
Ray Milkey05edbfc2018-10-23 14:23:16 -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.segmentrouting;
18
19/**
20 * Constants for default values of configurable properties.
21 */
22public final class OsgiPropertyConstants {
23
24 private OsgiPropertyConstants() {}
25
26 public static final String PROP_ACTIVE_PROBING = "activeProbing";
27 public static final boolean ACTIVE_PROBING_DEFAULT = true;
28
29 public static final String PROP_SINGLE_HOMED_DOWN = "singleHomedDown";
30 public static final boolean SINGLE_HOMED_DOWN_DEFAULT = false;
31
32 public static final String PROP_RESPOND_TO_UNKNOWN_HOSTS = "respondToUnknownHosts";
33 public static final boolean RESPOND_TO_UNKNOWN_HOSTS_DEFAULT = true;
34
35 public static final String PROP_ROUTE_DOUBLE_TAGGED_HOSTS = "routeDoubleTaggedHosts";
36 public static final boolean ROUTE_DOUBLE_TAGGED_HOSTS_DEFAULT = false;
37
38 public static final String PROP_DEFAULT_INTERNAL_VLAN = "defaultInternalVlan";
39 public static final int DEFAULT_INTERNAL_VLAN_DEFAULT = 4094;
40
41 public static final String PROP_PW_TRANSPORT_VLAN = "pwTransportVlan";
42 public static final int PW_TRANSPORT_VLAN_DEFAULT = 4090;
43
Ray Milkeye96d0de2018-11-02 17:12:21 -070044 static final String PROP_SYMMETRIC_PROBING = "symmetricProbing";
45 static final boolean SYMMETRIC_PROBING_DEFAULT = false;
46
psneha86e60d32019-03-26 06:31:41 -040047 public static final String PROP_ROUTE_SIMPLIFICATION = "routeSimplification";
48 public static final boolean ROUTE_SIMPLIFICATION_DEFAULT = false;
49
50
Ray Milkey05edbfc2018-10-23 14:23:16 -070051}