Examples of SubscriptionManagerImpl


Examples of com.calclab.emite.im.roster.SubscriptionManagerImpl

  @Before
  public void beforeTests() {
    session = new XmppSessionTester();
    eventBus = new SimpleEventBus();
    roster = mock(XmppRoster.class);
    manager = new SubscriptionManagerImpl(eventBus, session, roster);
    session.login(uri("user@local"), "anything");
  }
View Full Code Here

Examples of org.apache.cxf.ws.eventing.backend.manager.SubscriptionManagerImpl

    }

    public static synchronized SubscriptionManager getInstance() {
        if (instance == null) {
            instance = new SubscriptionManagerImpl(
                    "http://localhost:8080/ws_eventing/services/SubscriptionManager");
        }
        return instance;
    }
View Full Code Here

Examples of org.apache.cxf.ws.eventing.backend.manager.SubscriptionManagerImpl

        // utility class should not have a public constructor
    }

    public static synchronized SubscriptionManager getInstance() {
        if (instance == null) {
            instance = new SubscriptionManagerImpl(SimpleEventingIntegrationTest.URL_SUBSCRIPTION_MANAGER);
        }
        return instance;
    }
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

            authenticate_header = DEFAULT_AUTHENTICATE_HEADER;
        }
        log.debug(INIT_PARAM_AUTHENTICATE_HEADER + " = " + authenticate_header);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();

        // todo: ev. make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
    }
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

            authenticate_header = DEFAULT_AUTHENTICATE_HEADER;
        }
        log.debug(INIT_PARAM_AUTHENTICATE_HEADER + " = " + authenticate_header);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();
        txMgr.addTransactionListener((SubscriptionManagerImpl) subscriptionMgr);

        // todo: eventually make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

            authenticate_header = DEFAULT_AUTHENTICATE_HEADER;
        }
        log.debug(INIT_PARAM_AUTHENTICATE_HEADER + " = " + authenticate_header);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();
        txMgr.addTransactionListener((SubscriptionManagerImpl) subscriptionMgr);

        // todo: eventually make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

        pathPrefix = getInitParameter(INIT_PARAM_RESOURCE_PATH_PREFIX);
        getServletContext().setAttribute(CTX_ATTR_RESOURCE_PATH_PREFIX, pathPrefix);
        log.debug(INIT_PARAM_RESOURCE_PATH_PREFIX + " = " + pathPrefix);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();
        txMgr.addTransactionListener((SubscriptionManagerImpl) subscriptionMgr);

        // todo: eventually make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

            authenticate_header = DEFAULT_AUTHENTICATE_HEADER;
        }
        log.debug(INIT_PARAM_AUTHENTICATE_HEADER + " = " + authenticate_header);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();

        // todo: ev. make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
    }
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

        pathPrefix = getInitParameter(INIT_PARAM_RESOURCE_PATH_PREFIX);
        getServletContext().setAttribute(CTX_ATTR_RESOURCE_PATH_PREFIX, pathPrefix);
        log.debug(INIT_PARAM_RESOURCE_PATH_PREFIX + " = " + pathPrefix);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();
        txMgr.addTransactionListener((SubscriptionManagerImpl) subscriptionMgr);

        // todo: eventually make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
View Full Code Here

Examples of org.apache.jackrabbit.webdav.jcr.observation.SubscriptionManagerImpl

        pathPrefix = getInitParameter(INIT_PARAM_RESOURCE_PATH_PREFIX);
        getServletContext().setAttribute(CTX_ATTR_RESOURCE_PATH_PREFIX, pathPrefix);
        log.debug(INIT_PARAM_RESOURCE_PATH_PREFIX + " = " + pathPrefix);

        txMgr = new TxLockManagerImpl();
        subscriptionMgr = new SubscriptionManagerImpl();
        txMgr.addTransactionListener((SubscriptionManagerImpl) subscriptionMgr);

        // todo: eventually make configurable
        resourceFactory = new DavResourceFactoryImpl(txMgr, subscriptionMgr);
        locatorFactory = new DavLocatorFactoryImpl(pathPrefix);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.