aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java
diff options
context:
space:
mode:
authorWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-03-11 22:15:03 +0100
commit85901329b0794b136b96bf745f4ab1572806fc89 (patch)
treef23da7e97cae727f39d825f0fef8348cffb238e4 /src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java
parent3db2e44f186c59429901b2c899e139ea60117a55 (diff)
parentcf5da997da8820b4050f5b87ee9440a0ede36d1f (diff)
downloadjitsi-85901329b0794b136b96bf745f4ab1572806fc89.zip
jitsi-85901329b0794b136b96bf745f4ab1572806fc89.tar.gz
jitsi-85901329b0794b136b96bf745f4ab1572806fc89.tar.bz2
Merge commit 'cf5da99'HEADmaster
Signed-off-by: Wolfgang Wiedmeyer <wolfgit@wiedmeyer.de>
Diffstat (limited to 'src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java')
-rw-r--r--src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java336
1 files changed, 168 insertions, 168 deletions
diff --git a/src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java b/src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java
index 2a1bbe3..00c204e 100644
--- a/src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java
+++ b/src/net/java/sip/communicator/plugin/thunderbird/ThunderbirdActivator.java
@@ -1,4 +1,4 @@
-/*
+/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Copyright @ 2015 Atlassian Pty Ltd
@@ -15,170 +15,170 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-package net.java.sip.communicator.plugin.thunderbird;
-
-import java.util.*;
-
-import net.java.sip.communicator.service.contactsource.*;
-import net.java.sip.communicator.service.gui.*;
-import net.java.sip.communicator.service.protocol.*;
-import net.java.sip.communicator.util.*;
-
-import org.jitsi.service.configuration.*;
-import org.jitsi.service.resources.*;
-import org.osgi.framework.*;
-
-/**
- * Bundle-Activator for the Thunderbird address book contact source plug-in.
- *
- * @author Ingo Bauersachs
- */
-public class ThunderbirdActivator
- implements BundleActivator
-{
- /** OSGi context. */
- private static BundleContext bundleContext;
-
- /** Active address book registrations. */
- private static Map<ThunderbirdContactSourceService, ServiceRegistration>
- registrations;
-
- /**
- * The registered PhoneNumberI18nService.
- */
- private static PhoneNumberI18nService phoneNumberI18nService;
-
- /**
- * Gets the configuration service.
- * @return the configuration service.
- */
- static ConfigurationService getConfigService()
- {
- return ServiceUtils.getService(bundleContext,
- ConfigurationService.class);
- }
-
- /**
- * Gets the resource service.
- * @return the resource service.
- */
- static ResourceManagementService getResources()
- {
- return ServiceUtils.getService(bundleContext,
- ResourceManagementService.class);
- }
-
- /**
- * Gets all registered Thunderbird address book services.
- * @return all registered Thunderbird address book services.
- */
- static List<ThunderbirdContactSourceService> getActiveServices()
- {
- return new LinkedList<ThunderbirdContactSourceService>(
- registrations.keySet());
- }
-
- /**
- * Loads and registers an address book service.
- * @param config the name of the base property of the service to load.
- */
- static void add(String config)
- {
- ThunderbirdContactSourceService service
- = new ThunderbirdContactSourceService(config);
- registrations.put(service,
- bundleContext.registerService(
- ContactSourceService.class.getName(), service, null));
- }
-
- /**
- * Stops an address book service and deletes the corresponding configuration
- * data.
- *
- * @param service the address book instance to remove.
- */
- static void remove(ThunderbirdContactSourceService service)
- {
- registrations.get(service).unregister();
- registrations.remove(service);
- ConfigurationService config = getConfigService();
- config.removeProperty(service.getBaseConfigProperty());
- for (String prop : config.getPropertyNamesByPrefix(
- service.getBaseConfigProperty(), false))
- {
- config.removeProperty(prop);
- }
- }
-
- /**
- * Searches the configuration for Thunderbird address books and registers a
- * {@link ContactSourceService} for each found config.
- */
- public void start(BundleContext bundleContext) throws Exception
- {
- ThunderbirdActivator.bundleContext = bundleContext;
-
- ConfigurationService config = getConfigService();
- List<String> configs =
- config.getPropertyNamesByPrefix(
- ThunderbirdContactSourceService.PNAME_BASE_THUNDERBIRD_CONFIG,
- false);
-
- registrations = new HashMap
- <ThunderbirdContactSourceService, ServiceRegistration>();
- for (String cfg : configs)
- {
- String value = config.getString(cfg);
- if (value != null && cfg.endsWith(value))
- {
- add(cfg);
- }
- }
-
- /* registers the configuration form */
- Dictionary<String, String> properties
- = new Hashtable<String, String>();
- properties.put(
- ConfigurationForm.FORM_TYPE,
- ConfigurationForm.CONTACT_SOURCE_TYPE);
-
- bundleContext.registerService(
- ConfigurationForm.class.getName(),
- new LazyConfigurationForm(
- ThunderbirdConfigForm.class.getName(),
- getClass().getClassLoader(),
- null,
- "plugin.thunderbird.CONFIG_FORM_TITLE"),
- properties);
- }
-
- /**
- * Unregisters all {@link ContactSourceService}s that were registered by
- * this activator.
- */
- public void stop(BundleContext bundleContext) throws Exception
- {
- for (ServiceRegistration sr : registrations.values())
- {
- sr.unregister();
- }
-
- registrations = null;
- }
-
- /**
- * Returns the PhoneNumberI18nService.
- * @return returns the PhoneNumberI18nService.
- */
- public static PhoneNumberI18nService getPhoneNumberI18nService()
- {
- if(phoneNumberI18nService == null)
- {
- phoneNumberI18nService = ServiceUtils.getService(
- bundleContext,
- PhoneNumberI18nService.class);
- }
-
- return phoneNumberI18nService;
- }
-}
+package net.java.sip.communicator.plugin.thunderbird;
+
+import java.util.*;
+
+import net.java.sip.communicator.service.contactsource.*;
+import net.java.sip.communicator.service.gui.*;
+import net.java.sip.communicator.service.protocol.*;
+import net.java.sip.communicator.util.*;
+
+import org.jitsi.service.configuration.*;
+import org.jitsi.service.resources.*;
+import org.osgi.framework.*;
+
+/**
+ * Bundle-Activator for the Thunderbird address book contact source plug-in.
+ *
+ * @author Ingo Bauersachs
+ */
+public class ThunderbirdActivator
+ implements BundleActivator
+{
+ /** OSGi context. */
+ private static BundleContext bundleContext;
+
+ /** Active address book registrations. */
+ private static Map<ThunderbirdContactSourceService, ServiceRegistration>
+ registrations;
+
+ /**
+ * The registered PhoneNumberI18nService.
+ */
+ private static PhoneNumberI18nService phoneNumberI18nService;
+
+ /**
+ * Gets the configuration service.
+ * @return the configuration service.
+ */
+ static ConfigurationService getConfigService()
+ {
+ return ServiceUtils.getService(bundleContext,
+ ConfigurationService.class);
+ }
+
+ /**
+ * Gets the resource service.
+ * @return the resource service.
+ */
+ static ResourceManagementService getResources()
+ {
+ return ServiceUtils.getService(bundleContext,
+ ResourceManagementService.class);
+ }
+
+ /**
+ * Gets all registered Thunderbird address book services.
+ * @return all registered Thunderbird address book services.
+ */
+ static List<ThunderbirdContactSourceService> getActiveServices()
+ {
+ return new LinkedList<ThunderbirdContactSourceService>(
+ registrations.keySet());
+ }
+
+ /**
+ * Loads and registers an address book service.
+ * @param config the name of the base property of the service to load.
+ */
+ static void add(String config)
+ {
+ ThunderbirdContactSourceService service
+ = new ThunderbirdContactSourceService(config);
+ registrations.put(service,
+ bundleContext.registerService(
+ ContactSourceService.class.getName(), service, null));
+ }
+
+ /**
+ * Stops an address book service and deletes the corresponding configuration
+ * data.
+ *
+ * @param service the address book instance to remove.
+ */
+ static void remove(ThunderbirdContactSourceService service)
+ {
+ registrations.get(service).unregister();
+ registrations.remove(service);
+ ConfigurationService config = getConfigService();
+ config.removeProperty(service.getBaseConfigProperty());
+ for (String prop : config.getPropertyNamesByPrefix(
+ service.getBaseConfigProperty(), false))
+ {
+ config.removeProperty(prop);
+ }
+ }
+
+ /**
+ * Searches the configuration for Thunderbird address books and registers a
+ * {@link ContactSourceService} for each found config.
+ */
+ public void start(BundleContext bundleContext) throws Exception
+ {
+ ThunderbirdActivator.bundleContext = bundleContext;
+
+ ConfigurationService config = getConfigService();
+ List<String> configs =
+ config.getPropertyNamesByPrefix(
+ ThunderbirdContactSourceService.PNAME_BASE_THUNDERBIRD_CONFIG,
+ false);
+
+ registrations = new HashMap
+ <ThunderbirdContactSourceService, ServiceRegistration>();
+ for (String cfg : configs)
+ {
+ String value = config.getString(cfg);
+ if (value != null && cfg.endsWith(value))
+ {
+ add(cfg);
+ }
+ }
+
+ /* registers the configuration form */
+ Dictionary<String, String> properties
+ = new Hashtable<String, String>();
+ properties.put(
+ ConfigurationForm.FORM_TYPE,
+ ConfigurationForm.CONTACT_SOURCE_TYPE);
+
+ bundleContext.registerService(
+ ConfigurationForm.class.getName(),
+ new LazyConfigurationForm(
+ ThunderbirdConfigForm.class.getName(),
+ getClass().getClassLoader(),
+ null,
+ "plugin.thunderbird.CONFIG_FORM_TITLE"),
+ properties);
+ }
+
+ /**
+ * Unregisters all {@link ContactSourceService}s that were registered by
+ * this activator.
+ */
+ public void stop(BundleContext bundleContext) throws Exception
+ {
+ for (ServiceRegistration sr : registrations.values())
+ {
+ sr.unregister();
+ }
+
+ registrations = null;
+ }
+
+ /**
+ * Returns the PhoneNumberI18nService.
+ * @return returns the PhoneNumberI18nService.
+ */
+ public static PhoneNumberI18nService getPhoneNumberI18nService()
+ {
+ if(phoneNumberI18nService == null)
+ {
+ phoneNumberI18nService = ServiceUtils.getService(
+ bundleContext,
+ PhoneNumberI18nService.class);
+ }
+
+ return phoneNumberI18nService;
+ }
+}