blob: 2a267f3e6cc71e0bc06ca8009bfd65894f76c1da [file] [log] [blame]
alshabibfd23d312014-11-11 18:14:47 -08001package org.onlab.onos.demo;
2
3/**
4 * Simple demo api interface.
5 */
6public interface DemoAPI {
7
8 enum InstallType { MESH, RANDOM };
9
10 /**
11 * Installs intents based on the installation type.
12 * @param type the installation type.
13 */
14 void setup(InstallType type);
15
16 /**
17 * Uninstalls all existing intents.
18 */
19 void tearDown();
20
21}