re base code
[sdc.git] / catalog-dao / src / main / java / org / openecomp / sdc / be / dao / cassandra / schema / tables / SdcSchemaFilesTableDescription.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
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.sdc.be.dao.cassandra.schema.tables;
22
23 import com.datastax.driver.core.DataType;
24 import org.apache.commons.lang3.tuple.ImmutablePair;
25 import org.openecomp.sdc.be.dao.cassandra.schema.ITableDescription;
26 import org.openecomp.sdc.be.resources.data.auditing.AuditingTypesConstants;
27
28 import java.util.ArrayList;
29 import java.util.HashMap;
30 import java.util.List;
31 import java.util.Map;
32
33 public class SdcSchemaFilesTableDescription implements ITableDescription {
34         
35         private static final String SDC_RELEASE_NUM = "sdcReleaseNum";
36         private static final String TIMESTAMP = "timestamp";
37         private static final String CONFORMANCE_LEVEL = "conformanceLevel";
38         
39         @Override
40         public List<ImmutablePair<String, DataType>> primaryKeys() {
41                 List<ImmutablePair<String, DataType>> keys = new ArrayList<>();
42                 keys.add(new ImmutablePair<>(SDC_RELEASE_NUM, DataType.varchar()));
43                 keys.add(new ImmutablePair<>(CONFORMANCE_LEVEL, DataType.varchar()));
44                 return keys;
45         }
46         
47         @Override
48         public List<ImmutablePair<String, DataType>> clusteringKeys() {
49                 List<ImmutablePair<String, DataType>> keys = new ArrayList<>();
50                 keys.add(new ImmutablePair<>(TIMESTAMP, DataType.timestamp()));
51                 return keys;
52         }
53         
54         @Override
55         public Map<String, ImmutablePair<DataType, Boolean>> getColumnDescription() {
56                 Map<String, ImmutablePair<DataType, Boolean>> columns = new HashMap<>();
57
58                 for (SdcSchemaFilesFieldsDescription field : SdcSchemaFilesFieldsDescription.values()) {
59                         columns.put(field.getName(), new ImmutablePair<>(field.type, field.indexed));
60                 }
61
62                 return columns;
63         }
64
65         @Override
66         public String getKeyspace() {
67                 return AuditingTypesConstants.ARTIFACT_KEYSPACE;
68         }
69
70         @Override
71         public String getTableName() {
72                 return "sdcSchemaFiles";  
73         }
74         
75         enum SdcSchemaFilesFieldsDescription {
76                 FILE_NAME("fileName", DataType.varchar(), false),
77                 PAYLOAD("payload", DataType.blob(), false),
78                 CHECKSUM("checksum", DataType.varchar(), false);
79
80                 private String name;
81                 private DataType type;
82                 private boolean indexed;
83
84                 SdcSchemaFilesFieldsDescription(String name, DataType type, boolean indexed) {
85                         this.name = name;
86                         this.type = type;
87                         this.indexed = indexed;
88                 }
89
90                 public String getName() {
91                         return name;
92                 }
93
94                 public DataType getType() {
95                         return type;
96                 }
97
98                 public boolean isIndexed() {
99                         return indexed;
100                 }
101         }
102 }