blob: 9a013e0699a2583c9a76c013c8cb7fa7f1c2ae3d [file] [log] [blame]
Charles Chan40132b32017-01-22 00:19:37 -08001/*
2 * Copyright 2017-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 */
16
Yi Tsengef19de12017-04-24 11:33:05 -070017package org.onosproject.driver.pipeline.ofdpa;
Charles Chan40132b32017-01-22 00:19:37 -080018
19/**
20 * Group handler that emulates Broadcom OF-DPA TTP on OVS.
21 */
22public class OvsOfdpa2GroupHandler extends CpqdOfdpa2GroupHandler {
23 @Override
24 protected boolean supportCopyTtl() {
25 return false;
26 }
27
28 @Override
29 protected boolean supportSetMplsBos() {
30 return false;
31 }
Charles Chan0f43e472017-02-14 14:00:16 -080032
33 @Override
34 protected boolean requireVlanPopBeforeMplsPush() {
35 return true;
36 }
Charles Chan40132b32017-01-22 00:19:37 -080037}