Update the license for 2017-2018 license
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / db / schema / DBIndex.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 package org.onap.aai.db.schema;
21
22 import java.util.LinkedHashSet;
23 import java.util.Set;
24
25 import com.thinkaurelius.titan.core.schema.SchemaStatus;
26
27 public class DBIndex implements Named {
28
29         private String name = null;
30         private boolean unique = false;
31         private LinkedHashSet<DBProperty> properties = new LinkedHashSet<>();
32         private SchemaStatus status = null;
33         
34         /**
35          * Gets the name
36          */
37         public String getName() {
38                 return name;
39         }
40         
41         /**
42          * Sets the name.
43          *
44          * @param name the new name
45          */
46         public void setName(String name) {
47                 this.name = name;
48         }
49         
50         /**
51          * Checks if is unique.
52          *
53          * @return true, if is unique
54          */
55         public boolean isUnique() {
56                 return unique;
57         }
58         
59         /**
60          * Sets the unique.
61          *
62          * @param unique the new unique
63          */
64         public void setUnique(boolean unique) {
65                 this.unique = unique;
66         }
67         
68         /**
69          * Gets the properties.
70          *
71          * @return the properties
72          */
73         public Set<DBProperty> getProperties() {
74                 return properties;
75         }
76         
77         /**
78          * Sets the properties.
79          *
80          * @param properties the new properties
81          */
82         public void setProperties(LinkedHashSet<DBProperty> properties) {
83                 this.properties = properties;
84         }
85         
86         /**
87          * Gets the status.
88          *
89          * @return the status
90          */
91         public SchemaStatus getStatus() {
92                 return status;
93         }
94         
95         /**
96          * Sets the status.
97          *
98          * @param status the new status
99          */
100         public void setStatus(SchemaStatus status) {
101                 this.status = status;
102         }
103         
104 }