200d47c6fcf980dd66edc03dee526f34d7562617
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / dump / executor / VniTableDumpExecutor.java
1 /*
2  * Copyright (c) 2016 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
20 import io.fd.honeycomb.translate.read.ReadFailedException;
21 import io.fd.honeycomb.translate.util.read.cache.EntityDumpExecutor;
22 import io.fd.honeycomb.translate.vpp.util.JvppReplyConsumer;
23 import io.fd.vpp.jvpp.core.dto.LispEidTableVniDetailsReplyDump;
24 import io.fd.vpp.jvpp.core.dto.LispEidTableVniDump;
25 import io.fd.vpp.jvpp.core.future.FutureJVppCore;
26 import javax.annotation.Nonnull;
27 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
28
29
30 public class VniTableDumpExecutor extends AbstractJvppDumpExecutor
31         implements EntityDumpExecutor<LispEidTableVniDetailsReplyDump, Void>, JvppReplyConsumer {
32
33     public VniTableDumpExecutor(@Nonnull FutureJVppCore api) {
34         super(api);
35     }
36
37     @Override
38     public LispEidTableVniDetailsReplyDump executeDump(final InstanceIdentifier<?> identifier, Void params)
39             throws ReadFailedException {
40         return getReplyForRead(vppApi.lispEidTableVniDump(new LispEidTableVniDump()).toCompletableFuture(), identifier);
41     }
42 }