blob: f0470af8390242153ae1f6053360d570d602ed9a [file] [log] [blame]
Brian O'Connordee2e6b2014-08-12 11:34:51 -07001package net.onrc.onos.core.matchaction;
2
Ray Milkeya313cde2014-09-05 09:02:52 -07003/**
4 * States for MatchActionOperations objects.
5 */
Ray Milkey18b44ac2014-08-22 08:29:47 -07006public enum MatchActionOperationsState {
Ray Milkeya313cde2014-09-05 09:02:52 -07007 /** Being initialized. */
Ray Milkey18b44ac2014-08-22 08:29:47 -07008 INIT,
Ray Milkeya313cde2014-09-05 09:02:52 -07009
10 /** All operations that we depend on are finished. */
Ray Milkey18b44ac2014-08-22 08:29:47 -070011 RESOLVED,
Ray Milkeya313cde2014-09-05 09:02:52 -070012
13 /** Operation is pending waiting for dependencies. */
Ray Milkey18b44ac2014-08-22 08:29:47 -070014 PENDING,
Ray Milkeya313cde2014-09-05 09:02:52 -070015
16 /** Operations successfully installed. */
Ray Milkey18b44ac2014-08-22 08:29:47 -070017 INSTALLED,
Ray Milkeya313cde2014-09-05 09:02:52 -070018
19 /** Operations installation failed. */
Ray Milkey18b44ac2014-08-22 08:29:47 -070020 FAILED
Brian O'Connordee2e6b2014-08-12 11:34:51 -070021}
Ray Milkey18b44ac2014-08-22 08:29:47 -070022