ctkPluginConstants.cpp 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*=============================================================================
  2. Library: CTK
  3. Copyright (c) German Cancer Research Center,
  4. Division of Medical and Biological Informatics
  5. Licensed under the Apache License, Version 2.0 (the "License");
  6. you may not use this file except in compliance with the License.
  7. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. =============================================================================*/
  15. #include "ctkPluginConstants.h"
  16. const QString ctkPluginConstants::SYSTEM_PLUGIN_LOCATION = "System Plugin";
  17. const QString ctkPluginConstants::SYSTEM_PLUGIN_SYMBOLICNAME = "system.plugin";
  18. const QString ctkPluginConstants::FRAMEWORK_VERSION = "org.commontk.pluginfw.version";
  19. const QString ctkPluginConstants::FRAMEWORK_VENDOR = "org.commontk.pluginfw.vendor";
  20. const QString ctkPluginConstants::FRAMEWORK_STORAGE = "org.commontk.pluginfw.storage";
  21. const QString ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN = "org.commontk.pluginfw.storage.clean";
  22. const QString ctkPluginConstants::FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT = "onFirstInit";
  23. const QString ctkPluginConstants::FRAMEWORK_PLUGIN_LOAD_HINTS = "org.commontk.pluginfw.loadhints";
  24. const QString ctkPluginConstants::FRAMEWORK_PRELOAD_LIBRARIES = "org.commontk.pluginfw.preloadlibs";
  25. const QString ctkPluginConstants::PLUGIN_SYMBOLICNAME = "Plugin-SymbolicName";
  26. const QString ctkPluginConstants::PLUGIN_COPYRIGHT = "Plugin-Copyright";
  27. const QString ctkPluginConstants::PLUGIN_DESCRIPTION = "Plugin-Description";
  28. const QString ctkPluginConstants::PLUGIN_NAME = "Plugin-Name";
  29. const QString ctkPluginConstants::PLUGIN_VENDOR = "Plugin-Vendor";
  30. const QString ctkPluginConstants::PLUGIN_LOCALIZATION = "Plugin-Localization";
  31. const QString ctkPluginConstants::PLUGIN_LOCALIZATION_DEFAULT_BASENAME = "CTK-INF/l10n/plugin";
  32. const QString ctkPluginConstants::REQUIRE_PLUGIN = "Require-Plugin";
  33. const QString ctkPluginConstants::PLUGIN_VERSION_ATTRIBUTE = "plugin-version";
  34. const QString ctkPluginConstants::PLUGIN_VERSION = "Plugin-Version";
  35. const QString ctkPluginConstants::PLUGIN_ACTIVATIONPOLICY = "Plugin-ActivationPolicy";
  36. const QString ctkPluginConstants::PLUGIN_UPDATELOCATION = "Plugin-UpdateLocation";
  37. const QString ctkPluginConstants::ACTIVATION_EAGER = "eager";
  38. const QString ctkPluginConstants::ACTIVATION_LAZY = "lazy";
  39. const QString ctkPluginConstants::RESOLUTION_DIRECTIVE = "resolution";
  40. const QString ctkPluginConstants::RESOLUTION_MANDATORY = "mandatory";
  41. const QString ctkPluginConstants::RESOLUTION_OPTIONAL = "optional";
  42. const QString ctkPluginConstants::OBJECTCLASS = "objectclass";
  43. // ATTENTION!!! If the value is changed, change also ctkEventConstants::SERVICE_ID
  44. const QString ctkPluginConstants::SERVICE_ID = "service.id";
  45. // ATTENTION!!! If the value is changed, change also ctkEventConstants::SERVICE_PID
  46. const QString ctkPluginConstants::SERVICE_PID = "service.pid";
  47. const QString ctkPluginConstants::SERVICE_RANKING = "service.ranking";
  48. const QString ctkPluginConstants::SERVICE_VENDOR = "service.vendor";
  49. const QString ctkPluginConstants::SERVICE_DESCRIPTION = "service.description";