Package org.apache.vysper.xmpp.modules.extension.xep0060_pubsub.storageprovider

Examples of org.apache.vysper.xmpp.modules.extension.xep0060_pubsub.storageprovider.LeafNodeInMemoryStorageProvider


    }
   
    protected void configureStorageProvider(TestSessionContext tsc) {
        OpenStorageProviderRegistry storageProviderRegistry = new OpenStorageProviderRegistry();
        storageProviderRegistry.add(new CollectionNodeInMemoryStorageProvider());
        storageProviderRegistry.add(new LeafNodeInMemoryStorageProvider());
        ((DefaultServerRuntimeContext) tsc.getServerRuntimeContext()).setStorageProviderRegistry(storageProviderRegistry);
    }
View Full Code Here


     *
     * @param root
     */
    public PubSubServiceConfiguration(CollectionNode root) {
        this.rootNode = root;
        this.leafNodeStorageProvider = new LeafNodeInMemoryStorageProvider();
        this.collectionNodeStorageProvider = new CollectionNodeInMemoryStorageProvider();
        this.initialize();
    }
View Full Code Here

     *
     * @param root
     */
    public PubSubServiceConfiguration(CollectionNode root) {
        this.rootNode = root;
        this.leafNodeStorageProvider = new LeafNodeInMemoryStorageProvider();
        this.collectionNodeStorageProvider = new CollectionNodeInMemoryStorageProvider();
        this.initialize();
    }
View Full Code Here

    }

    protected void configureStorageProvider(TestSessionContext tsc) {
        OpenStorageProviderRegistry storageProviderRegistry = new OpenStorageProviderRegistry();
        storageProviderRegistry.add(new CollectionNodeInMemoryStorageProvider());
        storageProviderRegistry.add(new LeafNodeInMemoryStorageProvider());
        ((DefaultServerRuntimeContext) tsc.getServerRuntimeContext())
                .setStorageProviderRegistry(storageProviderRegistry);
    }
View Full Code Here

     *
     * @param root
     */
    public PubSubServiceConfiguration(CollectionNode root) {
        this.rootNode = root;
        this.leafNodeStorageProvider = new LeafNodeInMemoryStorageProvider();
        this.collectionNodeStorageProvider = new CollectionNodeInMemoryStorageProvider();
        this.initialize();
    }
View Full Code Here

TOP

Related Classes of org.apache.vysper.xmpp.modules.extension.xep0060_pubsub.storageprovider.LeafNodeInMemoryStorageProvider

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.