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