net.osgiliath.feature.itest.cdi.impl.Provider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of net.osgiliath.feature.itest.cdi Show documentation
Show all versions of net.osgiliath.feature.itest.cdi Show documentation
Dependency injection with pax cdi integration tests
The newest version!
package net.osgiliath.feature.itest.cdi.impl;
import org.ops4j.pax.cdi.api.OsgiServiceProvider;
import net.osgiliath.feature.itest.cdi.IProvider;
/**
* Message provider.
* @author charliemordant CDI provider class
*/
@OsgiServiceProvider
public class Provider implements IProvider {
/**
* CDI consumed method.
*/
@Override
public final String getMessage() {
return "hello";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy