00001 package org.openmobileis.oscarbundle; 00002 00003 import org.osgi.framework.BundleActivator; 00004 import org.osgi.framework.BundleContext; 00005 00006 public class Activator implements BundleActivator { 00007 00008 public void start(BundleContext arg0) throws Exception { 00009 System.out.println("OpenMIS Activator start()"); 00010 } 00011 00012 public void stop(BundleContext arg0) throws Exception { 00013 System.out.println("OpenMIS Activator stop"); 00014 } 00015 00016 }