blob: c8d6996ad71534fdf824007c2dd192d0f15f4ae6 [file] [log] [blame]
Brian O'Connorf3d06162014-10-02 15:54:12 -07001package org.onlab.onos.net.intent;
Brian O'Connorf3d06162014-10-02 15:54:12 -07002
3/**
4 * An intent used in the unit test.
Brian O'Connorf3d06162014-10-02 15:54:12 -07005 */
6public class TestSubclassIntent extends TestIntent {
7 /**
8 * Constructs an instance with the specified intent ID.
9 *
10 * @param id intent ID
11 */
12 public TestSubclassIntent(IntentId id) {
13 super(id);
14 }
15
16 /**
17 * Constructor for serializer.
18 */
19 protected TestSubclassIntent() {
20 super();
21 }
22}