Ray Milkey

Fix for ONOS-5220 - Enable REST API for demo app

Change-Id: Ibdfae20dfcf382113d56cd228baca5b734efe3f6
...@@ -9,11 +9,17 @@ COMPILE_DEPS = [ ...@@ -9,11 +9,17 @@ COMPILE_DEPS = [
9 9
10 osgi_jar_with_tests ( 10 osgi_jar_with_tests (
11 deps = COMPILE_DEPS, 11 deps = COMPILE_DEPS,
12 + web_context = '/onos/demo',
13 + api_title = 'Flow Throughput Demo App',
14 + api_version = '1.0',
15 + api_description = 'REST API for Demo App',
16 + api_package = 'org.onosproject.demo',
17 + debug = False,
12 ) 18 )
13 19
14 onos_app ( 20 onos_app (
15 title = 'Flow Throughput Demo App', 21 title = 'Flow Throughput Demo App',
16 category = 'Test', 22 category = 'Test',
17 url = 'http://onosproject.org', 23 url = 'http://onosproject.org',
18 - description = 'Flow throughput test application.', 24 + description = 'APIs for interacting with the flow throughput test application.',
19 ) 25 )
......