2 * Copyright © 2016-2017 European Support Limited
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.openecomp.sdc.activitylog.dao.impl;
18 import com.datastax.driver.mapping.Mapper;
19 import com.datastax.driver.mapping.Result;
20 import com.datastax.driver.mapping.annotations.Accessor;
21 import com.datastax.driver.mapping.annotations.Query;
22 import org.openecomp.core.dao.impl.CassandraBaseDao;
23 import org.openecomp.core.nosqldb.api.NoSqlDb;
24 import org.openecomp.core.nosqldb.factory.NoSqlDbFactory;
25 import org.openecomp.sdc.activitylog.dao.ActivityLogDao;
26 import org.openecomp.sdc.activitylog.dao.type.ActivityLogEntity;
28 import java.util.Collection;
30 public class ActivityLogDaoCassandraImpl extends CassandraBaseDao<ActivityLogEntity>
31 implements ActivityLogDao {
32 private static final NoSqlDb noSqlDb = NoSqlDbFactory.getInstance().createInterface();
33 private static final Mapper<ActivityLogEntity> mapper =
34 noSqlDb.getMappingManager().mapper(ActivityLogEntity.class);
35 private static final ActivityLogAccessor accessor =
36 noSqlDb.getMappingManager().createAccessor(ActivityLogAccessor.class);
39 protected Mapper<ActivityLogEntity> getMapper() {
44 protected Object[] getKeys(ActivityLogEntity entity) {
45 return new Object[]{entity.getItemId(), entity.getVersionId(), entity.getId()};
49 public Collection<ActivityLogEntity> list(ActivityLogEntity entity) {
50 return accessor.listByItemVersion(entity.getItemId(), entity.getVersionId()).all();
54 interface ActivityLogAccessor {
56 @Query("select * from activity_log where item_id=? and version_id=?")
57 Result<ActivityLogEntity> listByItemVersion(String itemId, String versionId);