blob: 4f36d7cffc90d928edd089a3cc7cf25d9064e5b1 [file] [log] [blame]
Ray Milkey9ed4b962014-08-20 15:43:40 -07001package net.onrc.onos.core.matchaction;
2/**
3 * A generator of MatchActionId.
4 */
5public interface MatchActionIdGenerator {
6 /**
7 * Generates a globally unique MatchActionId instance.
8 */
9 MatchActionId getNewId();
10}