Update .gitreview for new repo
[netvirt.git] / openstack / net-virt-sfc / impl / src / main / java / org / opendaylight / netvirt / openstack / netvirt / sfc / ISfcStandaloneClassifierService.java
1 /*
2  * Copyright © 2015 Red Hat, Inc. 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.openstack.netvirt.sfc;
10
11 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.access.control.list.rev150317.access.lists.acl.access.list.entries.ace.Matches;
12
13 public interface ISfcStandaloneClassifierService {
14     void programIngressClassifier(long dataPathId, String ruleName, Matches matches,
15                                   NshUtils nshHeader, long vxGpeOfPort, boolean write);
16
17     void programSfcTable(long dataPathId, long vxGpeOfPort, short goToTableId, boolean write);
18
19     void programEgressClassifier1(long dataPathId, long vxGpeOfPort, long nsp, short nsi,
20                                   int tunnelOfPort, int tunnelId, short gotoTableId, boolean write);
21
22     void programEgressClassifier(long dataPathId, long vxGpeOfPort, long nsp, short nsi,
23                                  long sfOfPort, int tunnelId, boolean write);
24
25     void programEgressClassifierBypass(long dataPathId, long vxGpeOfPort, long nsp, short nsi,
26                                        long sfOfPort, int tunnelId, boolean write);
27
28     void program_sfEgress(long dataPathId, int dstPort, boolean write);
29
30     void program_sfIngress(long dataPathId, int dstPort, long sfOfPort,
31                            String ipAddress, String sfDplName, boolean write);
32
33     void programStaticArpEntry(long dataPathId, long ofPort, String macAddressStr,
34                                String ipAddress, boolean write);
35 }