blob: c69f87149f7e5d14e9824df7a8476192c694b3b0 [file] [log] [blame]
Sho SHIMIZU95cc1fb2014-08-18 11:32:10 -07001package net.onrc.onos.core.matchaction.action;
2
3/**
4 * Utility for creating an instance of action.
5 */
6public final class Actions {
7 private Actions() {}
8
9 // TODO: consider if it is meaningful to return NullAction
10 // instead of just Action
11 /**
12 * Returns an action representing null action.
13 *
14 * @return action representing null action
15 */
16 public static NullAction nullAction() {
17 return NullAction.getInstance();
18 }
19}