dc92b220c51d01500ea8364d369cdc6684855fdd
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / db / schema / AuditDoc.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 java.util.List;
25
26 import org.codehaus.jackson.annotate.JsonProperty;
27
28 public class AuditDoc {
29
30         private List<DBProperty> properties;
31         private List<DBIndex> indexes;
32         private List<EdgeProperty> edgeLabels;
33         
34         /**
35          * Gets the properties.
36          *
37          * @return the properties
38          */
39         public List<DBProperty> getProperties() {
40                 return properties;
41         }
42         
43         /**
44          * Sets the properties.
45          *
46          * @param properties the new properties
47          */
48         public void setProperties(List<DBProperty> properties) {
49                 this.properties = properties;
50         }
51         
52         /**
53          * Gets the indexes.
54          *
55          * @return the indexes
56          */
57         public List<DBIndex> getIndexes() {
58                 return indexes;
59         }
60         
61         /**
62          * Sets the indexes.
63          *
64          * @param indexes the new indexes
65          */
66         public void setIndexes(List<DBIndex> indexes) {
67                 this.indexes = indexes;
68         }
69     
70     /**
71      * Gets the edge labels.
72      *
73      * @return the edge labels
74      */
75     @JsonProperty("edge-labels")
76         public List<EdgeProperty> getEdgeLabels() {
77                 return edgeLabels;
78         }
79         
80         /**
81          * Sets the edge labels.
82          *
83          * @param edgeLabels the new edge labels
84          */
85         public void setEdgeLabels(List<EdgeProperty> edgeLabels) {
86                 this.edgeLabels = edgeLabels;
87         }
88         
89         
90 }