HONEYCOMB-58 - Routing Api
[honeycomb.git] / nsh / impl / src / main / java / io / fd / honeycomb / vppnsh / impl / util / FutureJVppNshCustomizer.java
1 /*
2  * Copyright (c) 2016 Intel 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.vppnsh.impl.util;
18
19 import com.google.common.annotations.Beta;
20 import com.google.common.base.Preconditions;
21 import io.fd.vpp.jvpp.nsh.future.FutureJVppNsh;
22 import javax.annotation.Nonnull;
23
24 /**
25  * Abstract utility to hold the NshApi reference.
26  */
27 @Beta
28 public abstract class FutureJVppNshCustomizer {
29
30     private final FutureJVppNsh futureJVppNsh;
31
32     public FutureJVppNshCustomizer(@Nonnull final FutureJVppNsh futureJVppNsh) {
33         this.futureJVppNsh = Preconditions.checkNotNull(futureJVppNsh, "futureJVppNsh should not be null");
34     }
35
36     /**
37      * Get NshApi reference
38      *
39      * @return NshApi reference
40      */
41     public FutureJVppNsh getFutureJVppNsh() {
42         return futureJVppNsh;
43     }
44 }