blob: 34ab546f308b2ad8d9a0514f4d3578b052c87c49 [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.
alshabiba9819bf2014-11-30 18:15:52 -080017 * @param runParams run params
alshabibfd23d312014-11-11 18:14:47 -080018 */
alshabib486349d2014-11-25 18:09:25 -050019 void setup(InstallType type, Optional<JsonNode> runParams);
alshabibfd23d312014-11-11 18:14:47 -080020
21 /**
22 * Uninstalls all existing intents.
23 */
24 void tearDown();
25
26}