Demo waypoint for path redirection service: Add flow upon setting a waypoint address...
[affinity.git] / l2agent / src / main / java / org / opendaylight / l2agent / IfL2Agent.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, 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 /*
10  * Copyright (c) 2013 Plexxi, Inc. and others.  All rights reserved.
11  */
12
13
14 package org.opendaylight.affinity.l2agent;
15
16 import java.net.InetAddress;
17 import java.util.List;
18 import java.util.Set;
19 import java.util.concurrent.Future;
20
21 import org.opendaylight.controller.sal.utils.Status;
22 import org.opendaylight.controller.sal.core.NodeConnector;
23 import org.opendaylight.controller.sal.core.Node;
24
25 public interface IfL2Agent {
26
27     public NodeConnector lookup_output_port(Node node, byte [] dstMAC);
28
29 }