Format Java code with respect to ONAP Code Style
[externalapi/nbi.git] / src / main / java / org / onap / nbi / apis / status / model / ApplicationStatus.java
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 package org.onap.nbi.apis.status.model;
18
19 import java.util.HashSet;
20 import java.util.Set;
21 import org.onap.nbi.commons.Resource;
22
23 public class ApplicationStatus implements Resource {
24
25     private String name;
26
27     private StatusType status;
28
29     private String version;
30
31     private Set<ApplicationStatus> components = new HashSet<>();
32
33     /**
34      * Builds a new {@code ApplicationStatus} with the following attributes :
35      *
36      * @param name name of the service
37      * @param status status of the service ({@code OK} | {@code KO})
38      * @param version version of the service ({@code x.y.z})
39      */
40     public ApplicationStatus(final String name, final StatusType status, final String version) {
41         this.name = name;
42         this.status = status;
43         this.version = version;
44     }
45
46     public String getName() {
47         return this.name;
48     }
49
50     public StatusType getStatus() {
51         return this.status;
52     }
53
54     public String getVersion() {
55         return this.version;
56     }
57
58     public Set<ApplicationStatus> getComponents() {
59         return this.components;
60     }
61
62     public ApplicationStatus addComponent(final ApplicationStatus componentStatus) {
63         this.components.add(componentStatus);
64         return this;
65     }
66
67     @Override
68     public String getId() {
69         return null;
70     }
71 }