Package com.google.walkaround.slob.server

Examples of com.google.walkaround.slob.server.AccessChecker


    StoreModuleHelper.makeBasicBindingsAndExposures(binder(), UdwStore.class);
    StoreModuleHelper.bindEntityKinds(binder(), ROOT_ENTITY_KIND);

    bind(SlobModel.class).to(WaveObjectStoreModel.class);
    bind(AccessChecker.class).toInstance(
        new AccessChecker() {
          // We don't do access checks for UDWs here; we rely on WaveLoader to
          // look up the correct UDW, and on our session security to make it
          // impossible to access a UDW other than the one that WaveLoader
          // returned.
          @Override public void checkCanRead(SlobId objectId) {}
View Full Code Here

TOP

Related Classes of com.google.walkaround.slob.server.AccessChecker

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.