2 * Copyright (c) 2016 Cisco and/or its affiliates.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package io.fd.hc2vpp.lisp.translate.read.dump.executor.params;
19 import io.fd.hc2vpp.common.translate.util.ByteDataTranslator;
20 import javax.annotation.Nonnull;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev171013.eid.table.grouping.eid.table.vni.table.BridgeDomainSubtable;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev171013.eid.table.grouping.eid.table.vni.table.VrfSubtable;
25 * Parameters for dumping {@link VrfSubtable}/{@link BridgeDomainSubtable}
27 public final class SubtableDumpParams {
29 private final byte isL2;
31 private SubtableDumpParams(SubtableDumpParamsBuilder builder) {
32 this.isL2 = builder.isL2;
40 public String toString() {
41 return "SubtableDumpParams{" +
46 public enum MapLevel {
50 private final int value;
52 MapLevel(final int value) {
56 public int getValue() {
61 public static final class SubtableDumpParamsBuilder implements ByteDataTranslator {
65 public SubtableDumpParamsBuilder setL2(@Nonnull final MapLevel mapLevel) {
66 isL2 = booleanToByte(MapLevel.L2.equals(mapLevel));
70 public SubtableDumpParams build() {
71 return new SubtableDumpParams(this);