blob: ca01b3b6e1c0b7b1b047706714cdad486f75fdc9 [file] [log] [blame]
Alex Yashchuk4caa8e82017-12-08 17:40:05 +02001/*
2 * Copyright 2017 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.driver.pipeline;
18
19import org.onosproject.driver.pipeline.ofdpa.Ofdpa3GroupHandler;
20
21
22public class XpliantGroupHandler extends Ofdpa3GroupHandler {
23
24 /**
25 * Determines whether this pipeline support copy ttl instructions or not.
26 *
27 * @return false if copy ttl instructions is not supported
28 */
29 @Override
30 protected boolean supportCopyTtl() {
31 return false;
32 }
33
34}