inbandtelemetry REST
This patch extends the in-band-telemetry application with a REST API to provide GET/POST/DELETE
in-band domains (IntIntents)
Change-Id: I50f50edb03d262c42b4daae1c1be440aca1a6605
diff --git a/apps/inbandtelemetry/api/BUILD b/apps/inbandtelemetry/api/BUILD
index 93d94d3..4c20983 100644
--- a/apps/inbandtelemetry/api/BUILD
+++ b/apps/inbandtelemetry/api/BUILD
@@ -1,8 +1,14 @@
-COMPILE_DEPS = CORE_DEPS + KRYO + [
+COMPILE_DEPS = CORE_DEPS + JACKSON + REST + KRYO + [
+ "@jersey_client//jar",
"//core/store/serializers:onos-core-serializers",
]
osgi_jar_with_tests(
+ api_description = "REST API for Int",
+ api_package = "org.onosproject.inbandtelemetry.rest",
+ api_title = "INT REST",
+ api_version = "1.0",
test_deps = TEST_ADAPTERS,
+ web_context = "/onos/int",
deps = COMPILE_DEPS,
)