[POLICY-22] Reorganizing drools-apps
[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 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         /**
28          * 
29          */
30         private static final long serialVersionUID = -3597358159130168247L;
31         
32         public String period;
33         public Integer limit;
34         
35         public OperationsAccumulateParams() {
36                 
37         } 
38         
39         public OperationsAccumulateParams(OperationsAccumulateParams ops) {
40                 this.period = ops.period;
41                 this.limit = ops.limit;
42         }
43         
44         public OperationsAccumulateParams(String period, Integer limit) {
45                 this.period = period;
46                 this.limit = limit;
47         }
48         
49         @Override
50         public String toString() {
51                 return "OperationsAccumulateParams [period=" + period + ", limit=" + limit + "]";
52         }
53         
54         @Override
55         public int hashCode() {
56                 final int prime = 31;
57                 int result = 1;
58                 result = prime * result + ((period == null) ? 0 : period.hashCode());
59                 result = prime * result + ((limit == null) ? 0 : limit.hashCode());
60                 return result;
61         }
62         @Override
63         public boolean equals(Object obj) {
64                 if (this == obj)
65                         return true;
66                 if (obj == null)
67                         return false;
68                 if (getClass() != obj.getClass())
69                         return false;
70                 OperationsAccumulateParams other = (OperationsAccumulateParams) obj;
71                 if (period == null) {
72                         if (other.period != null)
73                                 return false;
74                 } else if (!period.equals(other.period))
75                         return false;
76                 if (limit == null) {
77                         if (other.limit != null)
78                                 return false;
79                 } else if (!limit.equals(other.limit))
80                         return false;
81                 return true;
82         }
83
84 }