fix incorrect dependency
[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.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.nosqldb.api.NoSqlDb;
29 import org.openecomp.core.nosqldb.factory.NoSqlDbFactory;
30 import org.openecomp.sdc.versioning.dao.types.Version;
31
32 import java.util.Collection;
33
34 public class VendorSoftwareProductInfoLoader {
35
36   private static final NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
37   private static final Mapper<VspInformation> mapper =
38       noSqlDb.getMappingManager().mapper(VspInformation.class);
39   private static final VendorSoftwareProductInfoAccessor accessor =
40       noSqlDb.getMappingManager().createAccessor(VendorSoftwareProductInfoAccessor.class);
41   private static final UDTMapper<Version> versionMapper =
42       noSqlDb.getMappingManager().udtMapper(Version.class);
43
44
45   public Collection<VspInformation> list() {
46     return accessor.listAll().all();
47   }
48
49
50   @Accessor
51   interface VendorSoftwareProductInfoAccessor {
52
53     @Query(
54         "SELECT * " +
55             "FROM " +
56             "vsp_information")
57     Result<VspInformation> listAll();
58
59
60   }
61 }