Package org.waveprotocol.box.server.authentication

Examples of org.waveprotocol.box.server.authentication.SessionManagerImpl


    waveletProvider = new WaveletProviderStub();
    AccountStore accountStore = new MemoryStore();
    accountStore.putAccount(new HumanAccountDataImpl(ParticipantId.ofUnsafe("fred@example.com")));
    org.eclipse.jetty.server.SessionManager jettySessionManager =
        mock(org.eclipse.jetty.server.SessionManager.class);
    SessionManager sessionManager = new SessionManagerImpl(accountStore, jettySessionManager);
    servlet = new FetchServlet(waveletProvider, protoSerializer, sessionManager);
  }
View Full Code Here

TOP

Related Classes of org.waveprotocol.box.server.authentication.SessionManagerImpl

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.