Improved logging in ScenarioHandler
[openflowjava.git] / simple-client / src / main / java / org / opendaylight / openflowjava / protocol / impl / clients / ClientEvent.java
1 /* Copyright (C)2013 Pantheon Technologies, s.r.o. All rights reserved. */
2 package org.opendaylight.openflowjava.protocol.impl.clients;
3
4 /**
5  * Uniting interface used for scenario support
6  * @author michal.polkorab
7  *
8  */
9 public interface ClientEvent {
10
11     /**
12      * Common method for triggering events
13      * @return true if event executed successfully
14      */
15     public boolean eventExecuted();
16 }