Fix build faliures due to OFPlugin checktyle fixes
[netvirt.git] / vpnservice / aclservice / impl / src / main / java / org / opendaylight / netvirt / aclservice / utils / AclServiceUtilFacade.java
1 /*
2  * Copyright (c) 2017 Hewlett Packard Enterprise, Co. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.netvirt.aclservice.utils;
10
11 import java.util.List;
12 import java.util.Map;
13
14 import javax.inject.Inject;
15 import javax.inject.Singleton;
16
17 import org.opendaylight.genius.mdsalutil.MatchInfoBase;
18 import org.opendaylight.netvirt.aclservice.api.utils.IAclServiceUtil;
19 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev160218.access.lists.acl.access.list.entries.ace.Matches;
20
21 @Singleton
22 public class AclServiceUtilFacade implements IAclServiceUtil {
23
24     @Inject
25     public AclServiceUtilFacade() {
26     }
27
28     @Override
29     public Map<String, List<MatchInfoBase>> programIpFlow(Matches matches) {
30         return AclServiceOFFlowBuilder.programIpFlow(matches);
31     }
32
33 }