Bug 5200: Yang parser doesn't fill error-app-tag and error-message in constraints
[yangtools.git] / yang / yang-parser-impl / src / main / java / org / opendaylight / yangtools / yang / parser / stmt / rfc6020 / effective / type / LengthConstraintEffectiveImpl.java
1 /**
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.parser.stmt.rfc6020.effective.type;
9
10 import com.google.common.base.Optional;
11 import com.google.common.base.Preconditions;
12 import java.util.Objects;
13 import org.opendaylight.yangtools.yang.model.api.type.LengthConstraint;
14
15 public class LengthConstraintEffectiveImpl implements LengthConstraint {
16
17     private final Number min;
18     private final Number max;
19
20     private final String description;
21     private final String reference;
22
23     private final String errorAppTag;
24     private final String errorMessage;
25
26     public LengthConstraintEffectiveImpl(final Number min, final Number max, final Optional<String> description,
27             final Optional<String> reference) {
28         this(min, max, description.orNull(), reference.orNull(), "length-out-of-specified-bounds", "The argument is out of bounds <"
29                 + min + ", " + max + ">");
30     }
31
32     public LengthConstraintEffectiveImpl(final Number min, final Number max, final String description,
33             final String reference, final String errorAppTag, final String errorMessage) {
34         super();
35         this.min = Preconditions.checkNotNull(min, "min must not be null.");
36         this.max = Preconditions.checkNotNull(max, "max must not be null");
37         this.description = description;
38         this.reference = reference;
39         this.errorAppTag = errorAppTag != null ? errorAppTag : "length-out-of-specified-bounds";
40         this.errorMessage = errorMessage != null ? errorMessage : "The argument is out of bounds <" + min + ", " + max
41                 + ">";
42     }
43
44     @Override
45     public Number getMin() {
46         return min;
47     }
48
49     @Override
50     public Number getMax() {
51         return max;
52     }
53
54     @Override
55     public String getDescription() {
56         return description;
57     }
58
59     @Override
60     public String getErrorAppTag() {
61         return errorAppTag;
62     }
63
64     @Override
65     public String getErrorMessage() {
66         return errorMessage;
67     }
68
69     @Override
70     public String getReference() {
71         return reference;
72     }
73
74     @Override
75     public int hashCode() {
76         final int prime = 31;
77         int result = 1;
78         result = prime * result + Objects.hashCode(description);
79         result = prime * result + errorAppTag.hashCode();
80         result = prime * result + errorMessage.hashCode();
81         result = prime * result + max.hashCode();
82         result = prime * result + min.hashCode();
83         result = prime * result + Objects.hashCode(reference);
84         return result;
85     }
86
87     @Override
88     public boolean equals(final Object obj) {
89         if (this == obj) {
90             return true;
91         }
92         if (obj == null) {
93             return false;
94         }
95         if (getClass() != obj.getClass()) {
96             return false;
97         }
98         final LengthConstraintEffectiveImpl other = (LengthConstraintEffectiveImpl) obj;
99         if (!Objects.equals(description, other.description)) {
100             return false;
101         }
102         if (!Objects.equals(errorAppTag, other.errorAppTag)) {
103             return false;
104         }
105         if (!Objects.equals(errorMessage, other.errorMessage)) {
106             return false;
107         }
108         if (!Objects.equals(max, other.max)) {
109             return false;
110         }
111         if (!Objects.equals(min, other.min)) {
112             return false;
113         }
114         if (!Objects.equals(reference, other.reference)) {
115             return false;
116         }
117         return true;
118     }
119
120     @Override
121     public String toString() {
122         StringBuilder builder = new StringBuilder();
123         builder.append(LengthConstraintEffectiveImpl.class.getSimpleName());
124         builder.append(" [min=");
125         builder.append(min);
126         builder.append(", max=");
127         builder.append(max);
128         builder.append(", description=");
129         builder.append(description);
130         builder.append(", errorAppTag=");
131         builder.append(errorAppTag);
132         builder.append(", reference=");
133         builder.append(reference);
134         builder.append(", errorMessage=");
135         builder.append(errorMessage);
136         builder.append("]");
137         return builder.toString();
138     }
139 }