blob: 8bb75a1be81e5ed975f2d40516dbff7cd0a5485a [file] [log] [blame]
Hyunsun Moon34bbe172016-06-28 19:18:40 -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.onosproject.openstacknode;
17
18/**
19 * Provides constants used in OpenStack node services.
20 */
21public final class Constants {
22
23 private Constants() {
24 }
25
26 public static final String INTEGRATION_BRIDGE = "br-int";
27 public static final String ROUTER_BRIDGE = "br-router";
28 public static final String DEFAULT_TUNNEL = "vxlan";
daniel parkee8700b2017-05-11 15:50:03 +090029 public static final String VLAN = "vlan";
Hyunsun Moon34bbe172016-06-28 19:18:40 -070030 public static final String PATCH_INTG_BRIDGE = "patch-intg";
31 public static final String PATCH_ROUT_BRIDGE = "patch-rout";
Hyunsun Moon052c71f2016-07-11 18:56:18 -070032
33 public static final int DEFAULT_OVSDB_PORT = 6640;
34 public static final int DEFAULT_OFPORT = 6653;
35 public static final String DEFAULT_OF_PROTO = "tcp";
Hyunsun Moon34bbe172016-06-28 19:18:40 -070036}