34353637383940
public void start(BundleContext context) throws Exception { Dictionary<String, String> properties = new Hashtable<String, String>(); properties.put("name", "myftplet"); context.registerService(Ftplet.class.getName(), new MyFtplet(), properties); }
31323334353637