AAI-1523 Batch reformat aai-schema-ingest
[aai/aai-common.git] / aai-schema-ingest / src / main / java / org / onap / aai / setup / SchemaVersion.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 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.aai.setup;
22
23 import java.util.regex.Matcher;
24 import java.util.regex.Pattern;
25
26 import org.onap.aai.validation.AAISchemaValidationException;
27
28 public class SchemaVersion implements Comparable<SchemaVersion> {
29
30     public static final Pattern VERSION_PATTERN = Pattern.compile("v([1-9][0-9]*)");
31
32     private final Integer value;
33
34     public SchemaVersion(String value) {
35         Matcher matcher = VERSION_PATTERN.matcher(value);
36
37         if (!matcher.find()) {
38             throw new AAISchemaValidationException(
39                     "Invalid Schema Version " + value + ", value doesn't match the expected regex: " + VERSION_PATTERN);
40         } else {
41             this.value = Integer.parseInt(matcher.group(1));
42         }
43     }
44
45     @Override
46     public int hashCode() {
47         return value.hashCode();
48     }
49
50     @Override
51     public boolean equals(Object other) {
52
53         if (this == other) {
54             return true;
55         }
56
57         if (other == null) {
58             return false;
59         }
60
61         if (!(other instanceof SchemaVersion)) {
62             return false;
63         }
64
65         SchemaVersion obj = (SchemaVersion) other;
66         return this.value.equals(obj.value);
67     }
68
69     @Override
70     public String toString() {
71         return String.valueOf("v" + value);
72     }
73
74     @Override
75     public int compareTo(SchemaVersion o) {
76
77         if (o == null) {
78             return -1;
79         }
80
81         return this.value.compareTo(o.value);
82     }
83 }