blob: 9b85e22dbeb351d4c89b8bc10531fcdbb44d8a12 [file] [log] [blame]
Sho SHIMIZU73f42342014-08-14 11:56:56 -07001package net.onrc.onos.api.flowmanager;
2
3/**
4 * An generator of {@link FlowId}.
5 */
6public interface FlowIdGenerator {
7 /**
Toshio Koide515ba842014-08-20 11:53:37 -07008 * Generates a global unique {@link FlowId} instance.
Sho SHIMIZU73f42342014-08-14 11:56:56 -07009 *
Toshio Koide515ba842014-08-20 11:53:37 -070010 * @return a global unique {@link FlowId} instance.
Sho SHIMIZU73f42342014-08-14 11:56:56 -070011 */
Toshio Koide515ba842014-08-20 11:53:37 -070012 FlowId getNewId();
Sho SHIMIZU73f42342014-08-14 11:56:56 -070013}