5a8635cf98e7b2ced84054f113f0658e4d52591d
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-software-product-lib / openecomp-sdc-vendor-software-product-core / src / main / java / org / openecomp / sdc / vendorsoftwareproduct / dao / impl / VendorSoftwareProductInfoDaoImpl.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.vendorsoftwareproduct.dao.impl;
22
23 import com.datastax.driver.mapping.Mapper;
24 import com.datastax.driver.mapping.Result;
25 import com.datastax.driver.mapping.UDTMapper;
26 import com.datastax.driver.mapping.annotations.Accessor;
27 import com.datastax.driver.mapping.annotations.Query;
28 import org.openecomp.core.dao.impl.CassandraBaseDao;
29 import org.openecomp.core.nosqldb.api.NoSqlDb;
30 import org.openecomp.core.nosqldb.factory.NoSqlDbFactory;
31 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
32 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
33 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspQuestionnaireEntity;
34 import org.openecomp.sdc.versioning.VersioningManagerFactory;
35 import org.openecomp.sdc.versioning.dao.types.Version;
36 import org.openecomp.sdc.versioning.types.VersionableEntityMetadata;
37
38 import java.util.Collection;
39
40 public class VendorSoftwareProductInfoDaoImpl extends CassandraBaseDao<VspDetails>
41     implements VendorSoftwareProductInfoDao {
42
43   private static final NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
44   private static final Mapper<VspDetails> mapper =
45       noSqlDb.getMappingManager().mapper(VspDetails.class);
46   private static final VendorSoftwareProductInfoAccessor accessor =
47       noSqlDb.getMappingManager().createAccessor(VendorSoftwareProductInfoAccessor.class);
48   private static final UDTMapper<Version> versionMapper =
49       noSqlDb.getMappingManager().udtMapper(Version.class);
50
51   @Override
52   public void registerVersioning(String versionableEntityType) {
53     VersioningManagerFactory.getInstance().createInterface()
54         .register(versionableEntityType, new VersionableEntityMetadata(
55             mapper.getTableMetadata().getName(),
56             mapper.getTableMetadata().getPartitionKey().get(0).getName(),
57             mapper.getTableMetadata().getPartitionKey().get(1).getName()));
58   }
59
60   @Override
61   protected Mapper<VspDetails> getMapper() {
62     return mapper;
63   }
64
65   @Override
66   protected Object[] getKeys(VspDetails entity) {
67     return new Object[]{entity.getId(), versionMapper.toUDT(entity.getVersion())};
68   }
69
70   @Override
71   public Collection<VspDetails> list(VspDetails entity) {
72     return accessor.listAll().all();
73   }
74
75   @Override
76   public void updateOldVersionIndication(VspDetails vspDetails) {
77
78   }
79
80   @Override
81   public void updateQuestionnaireData(String vspId, Version version,
82                                       String questionnaireData) {
83
84   }
85
86   @Override
87   public String getQuestionnaireData(String vspId, Version version) {
88     return null;
89   }
90
91   @Override
92   public VspQuestionnaireEntity getQuestionnaire(String vspId, Version version) {
93     return null;
94   }
95
96   @Override
97   public void deleteAll(String vspId, Version version) {
98
99   }
100
101
102   @Accessor
103   interface VendorSoftwareProductInfoAccessor {
104
105     @Query(
106         "SELECT vsp_id,version,name,description,icon,category,sub_category,vendor_id,vlm_version,"
107             + "license_agreement,feature_groups, is_old_version FROM vsp_information")
108     Result<VspDetails> listAll();
109   }
110 }