e4f98cbf83609585b55abad2e8452a3ed6358c72
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.db.schema;
23
24 import org.onap.aai.introspection.Introspector;
25 import com.thinkaurelius.titan.core.Cardinality;
26
27 public class DBProperty implements Named {
28
29         
30         private String name = null;
31         private Cardinality cardinality = null;
32         private Class<?> typeClass = 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          * Gets the cardinality.
52          *
53          * @return the cardinality
54          */
55         public Cardinality getCardinality() {
56                 return cardinality;
57         }
58         
59         /**
60          * Sets the cardinality.
61          *
62          * @param cardinality the new cardinality
63          */
64         public void setCardinality(Cardinality cardinality) {
65                 this.cardinality = cardinality;
66         }
67         
68         /**
69          * Gets the type class.
70          *
71          * @return the type class
72          */
73         public Class<?> getTypeClass() {
74                 return typeClass;
75         }
76         
77         /**
78          * Sets the type class.
79          *
80          * @param type the new type class
81          */
82         public void setTypeClass(Class<?> type) {
83                 this.typeClass = type;
84         }
85         
86 }