[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / tools / migration / 1702_to_1707_zusammen / src / main / java / org / openecomp / core / migration / loaders / VendorSoftwareProductInfoLoader.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.core.migration.loaders;
22
23 import com.datastax.driver.core.ResultSet;
24 import com.datastax.driver.core.UDTValue;
25 import com.datastax.driver.mapping.Mapper;
26 import com.datastax.driver.mapping.Result;
27 import com.datastax.driver.mapping.UDTMapper;
28 import com.datastax.driver.mapping.annotations.Accessor;
29 import com.datastax.driver.mapping.annotations.Query;
30 import org.openecomp.core.dao.impl.CassandraBaseDao;
31 import org.openecomp.core.nosqldb.api.NoSqlDb;
32 import org.openecomp.core.nosqldb.factory.NoSqlDbFactory;
33 import org.openecomp.sdc.vendorsoftwareproduct.dao.VendorSoftwareProductInfoDao;
34 import org.openecomp.sdc.vendorsoftwareproduct.dao.type.VspDetails;
35 import org.openecomp.sdc.versioning.VersioningManagerFactory;
36 import org.openecomp.sdc.versioning.dao.types.Version;
37 import org.openecomp.sdc.versioning.types.VersionableEntityMetadata;
38
39 import java.util.Collection;
40
41 public class VendorSoftwareProductInfoLoader {
42
43   private static final NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
44   private static final Mapper<VspInformation> mapper =
45       noSqlDb.getMappingManager().mapper(VspInformation.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
52   public Collection<VspInformation> list() {
53     return accessor.listAll().all();
54   }
55
56
57   @Accessor
58   interface VendorSoftwareProductInfoAccessor {
59
60     @Query(
61         "SELECT * " +
62             "FROM " +
63             "vsp_information")
64     Result<VspInformation> listAll();
65
66
67   }
68 }