Examples of ColaSynchronizationStrategyFactory


Examples of org.eclipse.ecf.internal.sync.doc.cola.ColaSynchronizationStrategyFactory

   */
  public void start(BundleContext ctxt) throws Exception {
    bundle = this;
    this.context = ctxt;
    this.identity = new IdentitySynchronizationStrategyFactory();
    this.cola = new ColaSynchronizationStrategyFactory();
    // Register identity synchronizer service
    final Dictionary identityServiceProps = new Properties();
    identityServiceProps.put(IServiceConstants.SYNCSTRATEGY_TYPE_PROPERTY, IdentitySynchronizationStrategyFactory.SYNCHSTRATEGY_TYPE);
    identityServiceProps.put(IServiceConstants.SYNCSTRATEGY_PROVIDER_PROPETY, IdentitySynchronizationStrategyFactory.SYNCHSTRATEGY_PROVIDER);
    identityServiceRegistration = this.context.registerService(IDocumentSynchronizationStrategyFactory.class.getName(), this.identity, identityServiceProps);
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.