blob: bfeb9854a33dc7637d3256f518e8efea6e362b08 [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 */
Thomas Vachuskac96058a2014-10-20 23:00:16 -07006public class TestSubclassInstallableIntent extends TestInstallableIntent {
Brian O'Connorf3d06162014-10-02 15:54:12 -07007 /**
8 * Constructs an instance with the specified intent ID.
9 *
10 * @param id intent ID
11 */
12 public TestSubclassInstallableIntent(IntentId id) {
13 super(id);
14 }
15
16 /**
17 * Constructor for serializer.
18 */
19 protected TestSubclassInstallableIntent() {
20 super();
21 }
22}