]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.osgi.boot/src/org/argeo/osgi/boot/equinox/EquinoxUtils.java
Merge branch 'master' of https://mbaudier@code.argeo.org/git/lgpl/argeo-commons.git
[lgpl/argeo-commons.git] / org.argeo.osgi.boot / src / org / argeo / osgi / boot / equinox / EquinoxUtils.java
1 package org.argeo.osgi.boot.equinox;
2
3 import java.util.Map;
4
5 import org.argeo.osgi.boot.OsgiBootUtils;
6 import org.eclipse.osgi.launch.EquinoxFactory;
7 import org.osgi.framework.launch.Framework;
8
9 /**
10 * Utilities with a dependency to the Equinox OSGi runtime or its configuration.
11 */
12 public class EquinoxUtils {
13
14 public static Framework launch(Map<String, String> configuration) {
15 return OsgiBootUtils.launch(new EquinoxFactory(), configuration);
16 }
17
18 /** Singleton. */
19 private EquinoxUtils() {
20
21 }
22 }