Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / policy-yaml / src / main / java / org / onap / policy / controlloop / policy / OperationsAccumulateParams.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * policy-yaml
4  * ================================================================================
5  * Copyright (C) 2017-2018 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.onap.policy.controlloop.policy;
22
23 import java.io.Serializable;
24
25 public class OperationsAccumulateParams implements Serializable {
26
27     private static final long serialVersionUID = -3597358159130168247L;
28     
29     private String period;
30     private Integer limit;
31     
32     public OperationsAccumulateParams() {
33         // Does Nothing 
34     } 
35     
36     public OperationsAccumulateParams(OperationsAccumulateParams ops) {
37         this.period = ops.period;
38         this.limit = ops.limit;
39     }
40     
41     public OperationsAccumulateParams(String period, Integer limit) {
42         this.period = period;
43         this.limit = limit;
44     }
45     
46     public String getPeriod() {
47         return period;
48     }
49
50     public void setPeriod(String period) {
51         this.period = period;
52     }
53
54     public Integer getLimit() {
55         return limit;
56     }
57
58     public void setLimit(Integer limit) {
59         this.limit = limit;
60     }
61
62     @Override
63     public String toString() {
64         return "OperationsAccumulateParams [period=" + period + ", limit=" + limit + "]";
65     }
66     
67     @Override
68     public int hashCode() {
69         final int prime = 31;
70         int result = 1;
71         result = prime * result + ((period == null) ? 0 : period.hashCode());
72         result = prime * result + ((limit == null) ? 0 : limit.hashCode());
73         return result;
74     }
75     
76     @Override
77     public boolean equals(Object obj) {
78         if (this == obj) {
79             return true;
80         }
81         if (obj == null) {
82             return false;
83         }
84         if (getClass() != obj.getClass()) {
85             return false;
86         }
87         OperationsAccumulateParams other = (OperationsAccumulateParams) obj;
88         if (period == null) {
89             if (other.period != null) {
90                 return false;
91             }
92         } else if (!period.equals(other.period)) {
93             return false;
94         }
95         if (limit == null) {
96             if (other.limit != null) {
97                 return false;
98             }
99         } else if (!limit.equals(other.limit)) {
100             return false;
101         }
102         return true;
103     }
104
105 }