Package org.platformlayer.auth.services.memory

Examples of org.platformlayer.auth.services.memory.SimpleCacheSystem


    bind(EncryptionStore.class).toProvider(EncryptionStoreProvider.class);

    bind(TokenService.class).toProvider(SharedSecretTokenService.Provider.class).asEagerSingleton();

    int cacheSize = 1000;
    CacheSystem simpleCacheSystem = new SimpleCacheSystem(cacheSize);
    bind(CacheSystem.class).toInstance(simpleCacheSystem);
  }
View Full Code Here

TOP

Related Classes of org.platformlayer.auth.services.memory.SimpleCacheSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.