Skip to main content
summaryrefslogtreecommitdiffstats
blob: 0b9bf084144b2b59c41d2fa56db1eff2fda5aca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

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(final Bundle bundle,
            final ServiceRegistration registration) {
        return (new WeavingService());
    }

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

}

Back to the top