c896556bbdd635962ab8534959ea46f0c9b1b779
[honeycomb.git] / lisp / lisp2vpp / src / main / java / io / fd / honeycomb / lisp / translate / read / dump / executor / LocatorSetsDumpExecutor.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.LispLocatorSetDetailsReplyDump;
24 import io.fd.vpp.jvpp.core.dto.LispLocatorSetDump;
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 LocatorSetsDumpExecutor extends AbstractJvppDumpExecutor
31         implements EntityDumpExecutor<LispLocatorSetDetailsReplyDump, Void>, JvppReplyConsumer {
32
33     public LocatorSetsDumpExecutor(@Nonnull FutureJVppCore api) {
34         super(api);
35     }
36
37     @Override
38     @Nonnull
39     public LispLocatorSetDetailsReplyDump executeDump(final InstanceIdentifier<?> identifier, final Void params)
40             throws ReadFailedException {
41
42         LispLocatorSetDump request = new LispLocatorSetDump();
43         //only local
44         request.filter = 1;
45
46         return getReplyForRead(vppApi.lispLocatorSetDump(request).toCompletableFuture(), identifier);
47     }
48 }