mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Valery Kharseko
14 hours ago bed2b17a444ee960268da0c05d1ca5365bdf2d98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.opends.server.backends.cassandra;
 
import org.forgerock.opendj.config.server.ConfigException;
import org.forgerock.opendj.server.config.server.CASBackendCfg;
import org.opends.server.backends.pluggable.BackendImpl;
import org.opends.server.core.ServerContext;
 
public class Backend extends BackendImpl<CASBackendCfg>{
    
      @Override
      protected Storage configureStorage(CASBackendCfg cfg, ServerContext serverContext) throws ConfigException
      {
        return new Storage(cfg, serverContext);
      }
 
}