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

Valery Kharseko
30.52.2026 6f5f5e77ef25e4d4951b1cf16a7300ff19ea16b8
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);
      }
 
}