blob: ff877daee6bc7ac44a493a3457acf911287a04dc [file] [log] [blame]
alshabibfd23d312014-11-11 18:14:47 -08001package org.onlab.onos.demo;
2
alshabib486349d2014-11-25 18:09:25 -05003import com.fasterxml.jackson.databind.JsonNode;
4
5import java.util.Optional;
6
alshabibfd23d312014-11-11 18:14:47 -08007/**
8 * Simple demo api interface.
9 */
10public interface DemoAPI {
11
12 enum InstallType { MESH, RANDOM };
13
14 /**
15 * Installs intents based on the installation type.
16 * @param type the installation type.
17 */
alshabib486349d2014-11-25 18:09:25 -050018 void setup(InstallType type, Optional<JsonNode> runParams);
alshabibfd23d312014-11-11 18:14:47 -080019
20 /**
21 * Uninstalls all existing intents.
22 */
23 void tearDown();
24
25}