aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/path/beans/AuditCassandraDaoMock.java
blob: c4885e1f07211d6301726e6f9b651052d04b987f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.openecomp.sdc.be.components.path.beans;

import org.openecomp.sdc.be.dao.cassandra.AuditCassandraDao;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;

@Component("audit-cassandra-dao")
public class AuditCassandraDaoMock extends AuditCassandraDao{

    @PostConstruct
    public void init() {

    }
}