HONEYCOMB-154: update revison of models that changed since 16.09
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / dump / executor / SubtableDumpExecutor.java
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
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
17 package io.fd.honeycomb.lisp.translate.read.dump.executor;
18
19 import static com.google.common.base.Preconditions.checkNotNull;
20
21 import io.fd.honeycomb.lisp.translate.read.dump.executor.params.SubtableDumpParams;
22 import io.fd.honeycomb.translate.read.ReadFailedException;
23 import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
24 import io.fd.honeycomb.translate.vpp.util.JvppReplyConsumer;
25 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDetailsReplyDump;
26 import io.fd.vpp.jvpp.core.dto.LispEidTableMapDump;
27 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
28 import javax.annotation.Nonnull;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.eid.table.grouping.eid.table.vni.table.BridgeDomainSubtable;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.lisp.rev161214.eid.table.grouping.eid.table.vni.table.VrfSubtable;
31 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
32
33 /**
34  * Dump executor for {@link VrfSubtable}/{@link BridgeDomainSubtable}
35  */
36 public final class SubtableDumpExecutor extends AbstractJvppDumpExecutor
37         implements EntityDumpExecutor<LispEidTableMapDetailsReplyDump, SubtableDumpParams>, JvppReplyConsumer {
38
39     public SubtableDumpExecutor(@Nonnull final FutureJVppCore vppApi) {
40         super(vppApi);
41     }
42
43     @Override
44     public LispEidTableMapDetailsReplyDump executeDump(final InstanceIdentifier<?> identifier,
45                                                        final SubtableDumpParams params)
46             throws ReadFailedException {
47         LispEidTableMapDump request = new LispEidTableMapDump();
48         request.isL2 = checkNotNull(params, "Cannot bind null params").isL2();
49
50         return getReplyForRead(vppApi.lispEidTableMapDump(request).toCompletableFuture(), identifier);
51     }
52
53 }