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