osgi AnnotationConfiguration should replace the standard one
Signed-off-by: Lachlan Roberts <lachlan@webtide.com>
This commit is contained in:
parent
b6688c0267
commit
e842c16bb4
|
@ -30,6 +30,7 @@ import org.eclipse.jetty.osgi.boot.OSGiWebappConstants;
|
||||||
import org.eclipse.jetty.util.StringUtil;
|
import org.eclipse.jetty.util.StringUtil;
|
||||||
import org.eclipse.jetty.util.resource.Resource;
|
import org.eclipse.jetty.util.resource.Resource;
|
||||||
import org.eclipse.jetty.util.statistic.CounterStatistic;
|
import org.eclipse.jetty.util.statistic.CounterStatistic;
|
||||||
|
import org.eclipse.jetty.webapp.Configuration;
|
||||||
import org.eclipse.jetty.webapp.WebAppContext;
|
import org.eclipse.jetty.webapp.WebAppContext;
|
||||||
import org.osgi.framework.Bundle;
|
import org.osgi.framework.Bundle;
|
||||||
import org.osgi.framework.Constants;
|
import org.osgi.framework.Constants;
|
||||||
|
@ -74,6 +75,12 @@ public class AnnotationConfiguration extends org.eclipse.jetty.annotations.Annot
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Class<? extends Configuration> replaces()
|
||||||
|
{
|
||||||
|
return org.eclipse.jetty.annotations.AnnotationConfiguration.class;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This parser scans the bundles using the OSGi APIs instead of assuming a jar.
|
* This parser scans the bundles using the OSGi APIs instead of assuming a jar.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue