Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Logger Service

...

Logger Service

Old URL

New URL

Comment

GET /logger/log/list

GET /logger

Returns a list of all (normal) logger.

GET /logger/audit/list

GET /logger/audit

Returns a list of all audit logger.

POST /logger/log/{name}/{level}

PUT /logger/normal/{name} /level

Creates or updates a logger with given name and sets logging level. Level will be now be part of payload instead of URL parameterparameter.

GET /logger/log/list

GET /logger/normal

Returns a list of all normal logger.

GET /logger/delete/{name}

DELETE /logger/normal/{name}

Deletes normal logger with matching name.

Old URL

New URL

Comment

PUT /logger/audit/enable <<removed>>

Use " PUT /logger/audit/{name} /level" to enables

Creates or updates audit logger with matching name.

GET /logger/audit/list

GET /logger/audit

Returns a list of all audit logger.

PUT /logger/audit/disable <<removed>>

Use " DELETE /logger/audit/{name} " to disable

Deletes audit logger with matching name.

Notification Service

Old URL

New URL

Comment

GET /notification/list

GET /notifications/

Returns a list of all notifications.

GET /notification/read/{notificationId}

GET /notifications/{notificationId}

Returns a notification with matching id.

POST /notification/create

POST /notifications

Creates a new notification.

POST /notification/update

PUT /notifications/{notificationId}

Updates notification with matching id.

GET /notification/delete/{notificationId}

DELETE /notifications/{notificationId}

Deletes notification with matching id.

...