Renamed the OSGi bundle activator implementation

This commit is contained in:
Trustin Lee 2009-01-08 11:16:14 +00:00
parent 0368aaed3f
commit 9645ffd251
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@
<Bundle-SymbolicName>${project.groupId}</Bundle-SymbolicName>
<Bundle-DocURL>${project.url}</Bundle-DocURL>
<Bundle-Activator>
${project.groupId}.container.osgi.BundleActivatorImpl
${project.groupId}.container.osgi.NettyBundleActivator
</Bundle-Activator>
<Export-Package>
!${project.groupId}.example.*,

View File

@ -43,7 +43,7 @@ import org.osgi.framework.ServiceRegistration;
* @author Trustin Lee (tlee@redhat.com)
* @version $Rev$, $Date$
*/
public class BundleActivatorImpl implements BundleActivator {
public class NettyBundleActivator implements BundleActivator {
private final List<ServiceRegistration> registrations =
new ArrayList<ServiceRegistration>();