summaryrefslogtreecommitdiffstats
path: root/src/main/resources/routes.conf
diff options
context:
space:
mode:
authorVarun Gudisena <vg411h@att.com>2017-08-30 16:00:10 -0500
committerVarun Gudisena <vg411h@att.com>2017-08-30 16:00:18 -0500
commitca63da6e0cb7fb63e231343d0b52a40036f6b6aa (patch)
tree1f03578a5badef32c983b1ebcab9df447b30e214 /src/main/resources/routes.conf
parentd53cd5dba6a7a74bba79d8e4bca5c60d0c9779b8 (diff)
Add Initial Code Import
Added initial code for DMaaP Message Router Component Issue-id: DMAAP-76 Change-Id: Ica6f265ea4f2901cf47191f21b4448514ea7c8d4 Signed-off-by: Varun Gudisena <vg411h@att.com>
Diffstat (limited to 'src/main/resources/routes.conf')
-rw-r--r--src/main/resources/routes.conf106
1 files changed, 106 insertions, 0 deletions
diff --git a/src/main/resources/routes.conf b/src/main/resources/routes.conf
new file mode 100644
index 0000000..14c4f56
--- /dev/null
+++ b/src/main/resources/routes.conf
@@ -0,0 +1,106 @@
+package org.onap.dmaap.messagerouter.msgrtr.nsa.cambria.endpoints
+
+#
+# We need to deprecate the original non-versioned paths and use /v1/ for them.
+# Non-versioned paths will be supported "permanently."
+#
+
+#
+# metrics
+#
+GET /metrics CambriaMetrics.get
+GET /metrics/{metricName} CambriaMetrics.getMetricByName
+
+GET /v1/metrics CambriaMetrics.get
+GET /v1/metrics/{metricName} CambriaMetrics.getMetricByName
+
+#
+# get and post events
+#
+GET /events/{topic}/{consumerGroup}/{clientId} CambriaEvents.getEvents
+POST /events/{topic} CambriaEvents.pushEvents
+POST /events/{topic}/{partition} CambriaEvents.pushEvents
+
+GET /v1/events/{topic}/{consumerGroup}/{clientId} CambriaEvents.getEvents
+POST /v1/events/{topic} CambriaEvents.pushEvents
+POST /v1/events/{topic}/{partition} CambriaEvents.pushEvents
+
+
+#
+# api keys
+#
+GET /apiKeys CambriaApiKeys.getAllApiKeys
+POST /apiKeys/create CambriaApiKeys.createApiKey
+GET /apiKeys/{apiKey} CambriaApiKeys.getApiKey
+PATCH /apiKeys/{apiKey} CambriaApiKeys.updateApiKey
+DELETE /apiKeys/{apiKey} CambriaApiKeys.deleteApiKey
+
+GET /v1/apiKeys CambriaApiKeys.getAllApiKeys
+POST /v1/apiKeys/create CambriaApiKeys.createApiKey
+GET /v1/apiKeys/{apiKey} CambriaApiKeys.getApiKey
+PATCH /v1/apiKeys/{apiKey} CambriaApiKeys.updateApiKey
+DELETE /v1/apiKeys/{apiKey} CambriaApiKeys.deleteApiKey
+
+#
+# topics
+#
+POST /topics/create CambriaTopics.createTopic
+GET /topics CambriaTopics.getTopics
+GET /topics/{topicName} CambriaTopics.getTopic
+DELETE /topics/{topicName} CambriaTopics.deleteTopic
+
+POST /v1/topics/create CambriaTopics.createTopic
+GET /v1/topics CambriaTopics.getTopics
+GET /v1/topics/{topicName} CambriaTopics.getTopic
+DELETE /v1/topics/{topicName} CambriaTopics.deleteTopic
+
+#
+# topic permissions
+#
+GET /topics/{topicName}/producers CambriaTopics.getPublishersByTopicName
+PUT /topics/{topicName}/producers/{producerId} CambriaTopics.permitPublisherForTopic
+DELETE /topics/{topicName}/producers/{producerId} CambriaTopics.denyPublisherForTopic
+
+GET /topics/{topicName}/consumers CambriaTopics.getConsumersByTopicName
+PUT /topics/{topicName}/consumers/{consumerId} CambriaTopics.permitConsumerForTopic
+DELETE /topics/{topicName}/consumers/{consumerId} CambriaTopics.denyConsumerForTopic
+
+GET /v1/topics/{topicName}/producers CambriaTopics.getPublishersByTopicName
+PUT /v1/topics/{topicName}/producers/{producerId} CambriaTopics.permitPublisherForTopic
+DELETE /v1/topics/{topicName}/producers/{producerId} CambriaTopics.denyPublisherForTopic
+
+GET /v1/topics/{topicName}/consumers CambriaTopics.getConsumersByTopicName
+PUT /v1/topics/{topicName}/consumers/{consumerId} CambriaTopics.permitConsumerForTopic
+DELETE /v1/topics/{topicName}/consumers/{consumerId} CambriaTopics.denyConsumerForTopic
+
+#
+# Admin
+#
+GET /admin/consumerCache CambriaAdmin.showConsumerCache
+POST /admin/dropConsumerCache CambriaAdmin.dropConsumerCache
+
+GET /v1/admin/consumerCache CambriaAdmin.showConsumerCache
+POST /v1/admin/dropConsumerCache CambriaAdmin.dropConsumerCache
+
+###############################################################################
+#
+# UI routes don't need to be versioned
+#
+
+#
+# UI
+#
+GET / CambriaUi.hello
+GET /ui/apikeys CambriaUi.getApiKeysTable
+GET /ui/apikeys/{apiKey} CambriaUi.getApiKey
+GET /ui/topics CambriaUi.getTopicsTable
+GET /ui/topics/{topic} CambriaUi.getTopic
+
+
+# typical static file paths
+GET /css/ staticDir:css
+GET /js/ staticDir:js
+GET /images/ staticDir:images
+GET /font/ staticDir:font
+GET /favicon.ico staticFile:images/attLogo.gif
+GET /font-awesome/ staticDir:font-awesome