HONEYCOMB-154: update revison of models that changed since 16.09
[honeycomb.git] / v3po / v3po2vpp / src / main / java / io / fd / honeycomb / translate / v3po / interfacesstate / acl / ingress / AclReader.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.translate.v3po.interfacesstate.acl.ingress;
18
19 import io.fd.honeycomb.translate.MappingContext;
20 import io.fd.honeycomb.translate.v3po.vppclassifier.VppClassifierContextManager;
21 import javax.annotation.Nonnull;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.Ip4Acl;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.Ip4AclBuilder;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.Ip6Acl;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.Ip6AclBuilder;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.L2Acl;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.v3po.rev161214.acl.base.attributes.L2AclBuilder;
28
29 interface AclReader {
30
31     @Nonnull
32     default L2Acl readL2Acl(final int l2TableId, @Nonnull final VppClassifierContextManager classifyTableContext,
33                             @Nonnull final MappingContext mappingContext) {
34         if (l2TableId == ~0) {
35             return null;
36         }
37         return new L2AclBuilder()
38             .setClassifyTable(classifyTableContext.getTableName(l2TableId, mappingContext)).build();
39     }
40
41     @Nonnull
42     default Ip4Acl readIp4Acl(final int ip4TableId, @Nonnull final VppClassifierContextManager classifyTableContext,
43                               @Nonnull final MappingContext mappingContext) {
44         if (ip4TableId == ~0) {
45             return null;
46         }
47         return new Ip4AclBuilder()
48             .setClassifyTable(classifyTableContext.getTableName(ip4TableId, mappingContext)).build();
49     }
50
51     @Nonnull
52     default Ip6Acl readIp6Acl(final int ip6TableId, @Nonnull final VppClassifierContextManager classifyTableContext,
53                               @Nonnull final MappingContext mappingContext) {
54         if (ip6TableId == ~0) {
55             return null;
56         }
57         return new Ip6AclBuilder()
58             .setClassifyTable(classifyTableContext.getTableName(ip6TableId, mappingContext)).build();
59     }
60 }