6710cf6e7e0e5a9ac9c9fed2bb364b10ac86e04f
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / model / AppStats.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard.model;
21
22 public class AppStats implements IDashboardResponse {
23         private String instanceKey;
24         private StatsDetailsTransport statsDetails;
25
26         public AppStats() {
27                 super();
28         }
29
30         public AppStats(String instanceKey, StatsDetailsTransport statsDetails) {
31                 super();
32                 this.instanceKey = instanceKey;
33                 this.statsDetails = statsDetails;
34         }
35
36         public StatsDetailsTransport getStatsDetails() {
37                 return statsDetails;
38         }
39
40         public void setStatsDetails(StatsDetailsTransport statsDetails) {
41                 this.statsDetails = statsDetails;
42         }
43
44         public String getInstanceKey() {
45                 return instanceKey;
46         }
47
48         public void setInstanceKey(String instanceKey) {
49                 this.instanceKey = instanceKey;
50         }
51
52         @Override
53         public String toString() {
54                 return this.getClass().getSimpleName() + "[instance=" + instanceKey + ", statsDetails=" + statsDetails + "]";
55         }
56
57 }