Add collaboration feature
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-zusammen-lib / openecomp-zusammen-plugin / src / main / java / org / openecomp / core / zusammen / plugin / dao / impl / cassandra / VersionStageRepositoryFactoryImpl.java
1 package org.openecomp.core.zusammen.plugin.dao.impl.cassandra;
2
3 import com.amdocs.zusammen.datatypes.SessionContext;
4 import org.openecomp.core.zusammen.plugin.dao.VersionStageRepository;
5 import org.openecomp.core.zusammen.plugin.dao.VersionStageRepositoryFactory;
6
7 public class VersionStageRepositoryFactoryImpl extends VersionStageRepositoryFactory {
8
9   private static final VersionStageRepository INSTANCE = new VersionStageRepositoryImpl();
10
11   @Override
12   public VersionStageRepository createInterface(SessionContext context) {
13     return INSTANCE;
14   }
15 }