blob: 2a5cba0edd7a4837162c307dd83bee9894c9aba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
package org.openecomp.dcae.restapi.endpoints
#
# We need to deprecate the original non-versioned paths and use /v1/ for them.
# Non-versioned paths will be supported "permanently."
#
#
# post events
#
POST /eventListener/v1.1 EventReceipt.receiveSingleEvent
POST /eventListener/v1.1/eventBatch EventReceipt.receiveMultipleEvents
POST /eventListener/v1 EventReceipt.receiveSingleEvent
POST /eventListener/v1/eventBatch EventReceipt.receiveMultipleEvents
#POST /eventListener/v1/{topic} EventReceipt.receiveEventsForTopic
###############################################################################
#
# UI routes don't need to be versioned
#
#
# UI
#
GET / Ui.hello
# 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
|