[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-license-rest / vendor-license-rest-types / src / main / java / org / openecomp / sdcrests / vendorlicense / types / MultiChoiceOrOtherDto.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.sdcrests.vendorlicense.types;
22
23 import org.hibernate.validator.group.GroupSequenceProvider;
24 import org.openecomp.sdcrests.vendorlicense.types.validation.MultiChoiceOrOtherSequenceProvider;
25 import org.openecomp.sdcrests.vendorlicense.types.validation.OtherChoiceValidation;
26
27 import java.util.Set;
28 import javax.validation.constraints.NotNull;
29 import javax.validation.constraints.Size;
30
31 @GroupSequenceProvider(value = MultiChoiceOrOtherSequenceProvider.class)
32 public class MultiChoiceOrOtherDto<E extends Enum<E>> {
33   @NotNull
34   @Size(min = 1, message = "must contain at least 1 choice.")
35   private Set<E> choices;
36   @NotNull(message = "may not be null when choices is set to 'Other'.",
37       groups = OtherChoiceValidation.class)
38   private String other;
39
40   public Set<E> getChoices() {
41     return choices;
42   }
43
44   public void setChoices(Set<E> choices) {
45     this.choices = choices;
46   }
47
48   public String getOther() {
49     return other;
50   }
51
52   public void setOther(String other) {
53     this.other = other;
54   }
55
56   @Override
57   public boolean equals(Object obj) {
58     if (this == obj) {
59       return true;
60     }
61     if (obj == null || getClass() != obj.getClass()) {
62       return false;
63     }
64
65     MultiChoiceOrOtherDto<?> that = (MultiChoiceOrOtherDto<?>) obj;
66
67     return choices != null ? choices.equals(that.choices)
68         : that.choices == null && (other != null ? other.equals(that.other) : that.other == null);
69
70   }
71
72   @Override
73   public int hashCode() {
74     int result = choices != null ? choices.hashCode() : 0;
75     result = 31 * result + (other != null ? other.hashCode() : 0);
76     return result;
77   }
78 }