All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eclipsesource.tycho.karaf.bridge.kar_packager.BundleConfiguration Maven / Gradle / Ivy

Go to download

The kar-packager is a small Maven Plugin to create Apache Karaf Archives (.kar) from a given folder. Everything the folder needs to contain are the bundles to make up the archive.

The newest version!
package com.eclipsesource.tycho.karaf.bridge.kar_packager;


public class BundleConfiguration {
  
  /**
   * @parameter
   */
  private String name;
  
  /**
   * @parameter
   */
  private int startLevel;
  
  /**
   * @parameter
   */
  private boolean autostart;
  
  public BundleConfiguration() {
    autostart = true;
    startLevel = 80;
  }
  
  public String getName() {
    return name;
  }
  
  public int getStartLevel() {
    return startLevel;
  }
  
  public boolean getAutostart() {
    return autostart;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy