Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6371c7e46bb2fd0dbb7908c97d558d8526530a39 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.eclipse.equinox.weaving.aspectj;

import org.osgi.framework.Bundle;
import org.osgi.framework.ServiceFactory;
import org.osgi.framework.ServiceRegistration;

public class WeavingServiceFactory implements ServiceFactory {

	public Object getService(Bundle bundle, ServiceRegistration registration) {
		return (new WeavingService());
	}

	public void ungetService(Bundle bundle, ServiceRegistration registration, Object service) {
		//nothing here
	}

}

Back to the top