Package org.apache.sling.installer.core.impl.tasks

Examples of org.apache.sling.installer.core.impl.tasks.BundleInstallTask


  @org.junit.Test
  public void testBasicOrdering() throws Exception {
    int testIndex = 1;
    final InstallTask [] tasksInOrder = {
        new BundleRemoveTask(getRegisteredResource("test:url"), null),
            new BundleInstallTask(getRegisteredResource("test:url"), null),
        new BundleUpdateTask(getRegisteredResource("test:url"), null),
            new RefreshBundlesTask(null),
      new BundleStartTask(null, 0, null)
    };
View Full Code Here


  @org.junit.Test
  public void testMultipleConfigAndBundles() throws Exception {
    int testIndex = 1;
    final InstallTask [] tasksInOrder = {
      new BundleInstallTask(getRegisteredResource("test:someURIa.nothing"), null),
            new BundleInstallTask(getRegisteredResource("test:someURIb.nothing"), null),
            new RefreshBundlesTask(null),
      new BundleStartTask(null, 0, null)
    };

    taskSet.clear();
View Full Code Here

TOP

Related Classes of org.apache.sling.installer.core.impl.tasks.BundleInstallTask

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.