[POLICY-122] Policy GUI Fixes
[policy/engine.git] / PolicyEngineAPI / src / main / java / org / openecomp / policy / std / StdMetricsResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * PolicyEngineAPI
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
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
21 package org.openecomp.policy.std;
22
23 import org.openecomp.policy.api.MetricsResponse;
24
25 public class StdMetricsResponse implements MetricsResponse {
26         private String responseMessage;
27         private int pdpMetrics;
28         private int papMetrics;
29         private int metricsTotal;
30         private int responseCode;
31         
32         @Override
33         public String getResponseMessage() {
34                 return responseMessage;
35         }
36
37         @Override
38         public int getResponseCode() {
39                 return responseCode;
40         }
41
42         @Override
43         public int getPapMetrics() {
44                 return papMetrics;
45         }
46
47         @Override
48         public int getPdpMetrics() {
49                 return pdpMetrics;
50         }
51
52         @Override
53         public int getMetricsTotal() {
54                 metricsTotal = papMetrics + pdpMetrics;
55                 return metricsTotal;
56         }
57
58         public void setResponseMessage(String responseMessage) {
59                 this.responseMessage = responseMessage;
60         }
61
62         public void setPdpMetrics(int pdpMetrics) {
63                 this.pdpMetrics = pdpMetrics;
64         }
65
66         public void setPapMetrics(int papMetrics) {
67                 this.papMetrics = papMetrics;
68         }
69
70         public void setMetricsTotal(int metricsTotal) {
71                 this.metricsTotal = metricsTotal;
72         }
73
74         public void setResponseCode(int responseCode) {
75                 this.responseCode = responseCode;
76         }
77
78 }