Update license files, sonar plugin and fix tests
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / db / schema / DBProperty.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 org.openecomp.aai.introspection.Introspector;
24 import com.thinkaurelius.titan.core.Cardinality;
25
26 public class DBProperty implements Named {
27
28         
29         private String name = null;
30         private Cardinality cardinality = null;
31         private Class<?> typeClass = null;
32         
33         /**
34          * Gets the name
35          */
36         public String getName() {
37                 return name;
38         }
39         
40         /**
41          * Sets the name.
42          *
43          * @param name the new name
44          */
45         public void setName(String name) {
46                 this.name = name;
47         }
48         
49         /**
50          * Gets the cardinality.
51          *
52          * @return the cardinality
53          */
54         public Cardinality getCardinality() {
55                 return cardinality;
56         }
57         
58         /**
59          * Sets the cardinality.
60          *
61          * @param cardinality the new cardinality
62          */
63         public void setCardinality(Cardinality cardinality) {
64                 this.cardinality = cardinality;
65         }
66         
67         /**
68          * Gets the type class.
69          *
70          * @return the type class
71          */
72         public Class<?> getTypeClass() {
73                 return typeClass;
74         }
75         
76         /**
77          * Sets the type class.
78          *
79          * @param type the new type class
80          */
81         public void setTypeClass(Class<?> type) {
82                 this.typeClass = type;
83         }
84         
85 }