[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-sdc-vendor-license-lib / openecomp-sdc-vendor-license-core / src / main / java / org / openecomp / sdc / vendorlicense / dao / impl / VendorLicenseModelCassandraDaoImpl.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.vendorlicense.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.vendorlicense.dao.VendorLicenseModelDao;
32 import org.openecomp.sdc.vendorlicense.dao.types.VendorLicenseModelEntity;
33 import org.openecomp.sdc.versioning.VersioningManagerFactory;
34 import org.openecomp.sdc.versioning.dao.types.Version;
35 import org.openecomp.sdc.versioning.types.VersionableEntityMetadata;
36
37 import java.util.Collection;
38
39 public class VendorLicenseModelCassandraDaoImpl extends CassandraBaseDao<VendorLicenseModelEntity>
40     implements
41     VendorLicenseModelDao {
42
43   private static NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
44   private static Mapper<VendorLicenseModelEntity> mapper =
45       noSqlDb.getMappingManager().mapper(VendorLicenseModelEntity.class);
46   private static VendorLicenseModelAccessor accessor =
47       noSqlDb.getMappingManager().createAccessor(VendorLicenseModelAccessor.class);
48   private static 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<VendorLicenseModelEntity> getMapper() {
62     return mapper;
63   }
64
65   @Override
66   protected Object[] getKeys(VendorLicenseModelEntity entity) {
67     return new Object[]{entity.getId(), versionMapper.toUDT(entity.getVersion())};
68   }
69
70   @Override
71   public Collection<VendorLicenseModelEntity> list(VendorLicenseModelEntity vendorLicenseModel) {
72     return accessor.getAll().all();
73   }
74
75   @Accessor
76   interface VendorLicenseModelAccessor {
77
78     @Query("SELECT * FROM vendor_license_model")
79     Result<VendorLicenseModelEntity> getAll();
80
81   }
82 }