blob: 6730cf3a93beca022ba4b52a1e72550561d21d54 [file] [log] [blame]
Hyunsun Moon5401aaa2016-06-12 17:40:34 -07001/*
2 * Copyright 2016-present 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.opencord.cordvtn.api;
17
18/**
19 * Provides constants used in CORD VTN services.
20 */
21public final class Constants {
22
23 private Constants() {
24 }
25
26 public static final String CORDVTN_APP_ID = "org.opencord.vtn";
27
Hyunsun Moon5401aaa2016-06-12 17:40:34 -070028 public static final String MSG_OK = "OK";
29 public static final String MSG_NO = "NO";
30
Hyunsun Moon5401aaa2016-06-12 17:40:34 -070031 public static final String DEFAULT_TUNNEL = "vxlan";
Hyunsun Moon81a13562016-08-04 13:48:08 -070032 public static final String INTEGRATION_BRIDGE = "br-int";
Hyunsun Moon1e88fef2016-08-04 14:00:35 -070033 public static final String NOT_APPLICABLE = "N/A";
Hyunsun Moon81a13562016-08-04 13:48:08 -070034
Hyunsun Moon3fc0cbc2016-11-22 18:29:12 -080035 public static final String DEFAULT_OF_PROTOCOL = "tcp";
36 public static final int DEFAULT_OF_PORT = 6653;
37 public static final int DEFAULT_OVSDB_PORT = 6640;
Hyunsun Moonbcf49252017-02-21 22:28:41 +090038 public static final String DEFAULT_GATEWAY_MAC_STR = "00:00:00:00:00:01";
Hyunsun Moon5401aaa2016-06-12 17:40:34 -070039}