blob: 43bb0dda9142f560661c3471bf42c93254a9b3b4 [file] [log] [blame]
Brian O'Connorf3d06162014-10-02 15:54:12 -07001package org.onlab.onos.net.intent;
2//TODO is this the right package?
3
4/**
5 * An intent used in the unit test.
6 *
7 * FIXME: we don't want to expose this class publicly, but the current Kryo
8 * serialization mechanism does not allow this class to be private and placed
9 * on testing directory.
10 */
11public class TestSubclassIntent extends TestIntent {
12 /**
13 * Constructs an instance with the specified intent ID.
14 *
15 * @param id intent ID
16 */
17 public TestSubclassIntent(IntentId id) {
18 super(id);
19 }
20
21 /**
22 * Constructor for serializer.
23 */
24 protected TestSubclassIntent() {
25 super();
26 }
27}