blob: 8afedb961b517442d3c87b97eb7f9da22b14d338 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.tika.config;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* Bundle activator that adjust the class loading mechanism of the
* {@link ServiceLoader} class to work correctly in an OSGi environment.
* <p>
* Note that you should <strong>not</strong> access this class directly.
* Instead the OSGi environment (if present) will automatically invoke the
* methods of this class based on the Bundle-Activator setting in the bundle
* manifest.
*
* @since Apache Tika 0.9
*/
public class TikaActivator implements BundleActivator {
public void start(BundleContext context) throws Exception {
ServiceLoader.setContextClassLoader(
TikaActivator.class.getClassLoader());
}
public void stop(BundleContext context) throws Exception {
ServiceLoader.setContextClassLoader(null);
}
}