Improve license scan result
[externalapi/nbi.git] / docs / offeredapis / api_hub / api.plantuml
1 #
2 #     Copyright (c) 2018 Orange
3 #
4 #     Licensed under the Apache License, Version 2.0 (the "License");
5 #     you may not use this file except in compliance with the License.
6 #     You may obtain a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #     Unless required by applicable law or agreed to in writing, software
11 #     distributed under the License is distributed on an "AS IS" BASIS,
12 #     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #     See the License for the specific language governing permissions and
14 #     limitations under the License.
15 #
16
17 @startuml
18
19
20 class ErrorDetail {
21    code:int
22    message:string
23    description:string
24    infoURL:string
25 }
26
27 class Error {
28    code:int
29    message:string
30    description:string
31    infoURL:string
32 }
33    Error --> "0-*" ErrorDetail : details
34
35 class HubIn {
36    query:string
37    callback:string
38 }
39
40 class Hub {
41    id:string
42    query:string
43    callback:string
44 }
45
46 @enduml