Class DefinitionsServiceImpl

    • Constructor Detail

      • DefinitionsServiceImpl

        public DefinitionsServiceImpl()
    • Method Detail

      • setBundleContext

        public void setBundleContext​(org.osgi.framework.BundleContext bundleContext)
      • setPersistenceService

        public void setPersistenceService​(PersistenceService persistenceService)
      • setSchedulerService

        public void setSchedulerService​(SchedulerService schedulerService)
      • setDefinitionsRefreshInterval

        public void setDefinitionsRefreshInterval​(long definitionsRefreshInterval)
      • postConstruct

        public void postConstruct()
      • reloadTypes

        public void reloadTypes​(boolean refresh)
      • preDestroy

        public void preDestroy()
      • getTypesByPlugin

        public Map<Long,​List<PluginType>> getTypesByPlugin()
        Description copied from interface: DefinitionsService
        Retrieves a Map of plugin identifier to a list of plugin types defined by that particular plugin.
        Specified by:
        getTypesByPlugin in interface DefinitionsService
        Returns:
        a Map of plugin identifier to a list of plugin types defined by that particular plugin
      • getConditionTypesByTag

        public Set<ConditionType> getConditionTypesByTag​(String tag)
        Description copied from interface: DefinitionsService
        Retrieves the set of condition types with the specified tag.
        Specified by:
        getConditionTypesByTag in interface DefinitionsService
        Parameters:
        tag - the tag marking the condition types we want to retrieve
        Returns:
        the set of condition types with the specified tag (and its sub-tags, if specified)
      • getConditionTypesBySystemTag

        public Set<ConditionType> getConditionTypesBySystemTag​(String tag)
        Description copied from interface: DefinitionsService
        Retrieves the set of condition types with the specified system tag.
        Specified by:
        getConditionTypesBySystemTag in interface DefinitionsService
        Parameters:
        tag - the system tag marking the condition types we want to retrieve
        Returns:
        the set of condition types with the specified tag (and its sub-tags, if specified)
      • getConditionType

        public ConditionType getConditionType​(String id)
        Description copied from interface: DefinitionsService
        Retrieves the condition type associated with the specified identifier.
        Specified by:
        getConditionType in interface DefinitionsService
        Parameters:
        id - the identifier of the condition type to retrieve
        Returns:
        the condition type associated with the specified identifier or null if no such condition type exists
      • getActionTypeByTag

        public Set<ActionType> getActionTypeByTag​(String tag)
        Description copied from interface: DefinitionsService
        Retrieves the set of action types with the specified tag.
        Specified by:
        getActionTypeByTag in interface DefinitionsService
        Parameters:
        tag - the tag marking the action types we want to retrieve
        Returns:
        the set of action types with the specified tag
      • getActionTypeBySystemTag

        public Set<ActionType> getActionTypeBySystemTag​(String tag)
        Description copied from interface: DefinitionsService
        Retrieves the set of action types with the specified system tag.
        Specified by:
        getActionTypeBySystemTag in interface DefinitionsService
        Parameters:
        tag - the system tag marking the action types we want to retrieve
        Returns:
        the set of action types with the specified tag
      • getActionType

        public ActionType getActionType​(String id)
        Description copied from interface: DefinitionsService
        Retrieves the action type associated with the specified identifier.
        Specified by:
        getActionType in interface DefinitionsService
        Parameters:
        id - the identifier of the action type to retrieve
        Returns:
        the action type associated with the specified identifier or null if no such action type exists
      • getValueTypeByTag

        public Set<ValueType> getValueTypeByTag​(String tag)
        Description copied from interface: DefinitionsService
        Retrieves the set of value types with the specified tag.
        Specified by:
        getValueTypeByTag in interface DefinitionsService
        Parameters:
        tag - the tag marking the value types we want to retrieve
        Returns:
        the set of value types with the specified tag
      • getValueType

        public ValueType getValueType​(String id)
        Description copied from interface: DefinitionsService
        Retrieves the value type associated with the specified identifier.
        Specified by:
        getValueType in interface DefinitionsService
        Parameters:
        id - the identifier of the value type to retrieve
        Returns:
        the value type associated with the specified identifier or null if no such value type exists
      • bundleChanged

        public void bundleChanged​(org.osgi.framework.BundleEvent event)
        Specified by:
        bundleChanged in interface org.osgi.framework.BundleListener
      • getPropertyMergeStrategyType

        public PropertyMergeStrategyType getPropertyMergeStrategyType​(String id)
        Description copied from interface: DefinitionsService
        Retrieves the property merge strategy type associated with the specified identifier.
        Specified by:
        getPropertyMergeStrategyType in interface DefinitionsService
        Parameters:
        id - the identifier of the property merge strategy type to retrieve
        Returns:
        the property merge strategy type associated with the specified identifier or null if no such property merge strategy type exists
      • extractConditionsByType

        public Set<Condition> extractConditionsByType​(Condition rootCondition,
                                                      String typeId)
        Description copied from interface: DefinitionsService
        Retrieves all conditions of the specified type from the specified root condition. TODO: remove?
        Specified by:
        extractConditionsByType in interface DefinitionsService
        Parameters:
        rootCondition - the condition from which we want to extract all conditions with the specified type
        typeId - the identifier of the condition type we want conditions to extract to match
        Returns:
        a set of conditions contained in the specified root condition and matching the specified condition type or an empty set if no such condition exists
      • extractConditionByTag

        @Deprecated
        public Condition extractConditionByTag​(Condition rootCondition,
                                               String tag)
        Deprecated.
        As of version 1.2.0-incubating, use extractConditionBySystemTag(Condition, String) instead
        Description copied from interface: DefinitionsService
        Retrieves a condition matching the specified tag identifier from the specified root condition. TODO: remove from API and move to a different class? TODO: purpose and behavior not clear
        Specified by:
        extractConditionByTag in interface DefinitionsService
        Parameters:
        rootCondition - the root condition where to start the extraction by class
        tag - the tag to use to extract the condition
        Returns:
        Condition the condition that has been found matching the tag, or null if none matched
      • extractConditionBySystemTag

        public Condition extractConditionBySystemTag​(Condition rootCondition,
                                                     String systemTag)
        Description copied from interface: DefinitionsService
        Retrieves a condition matching the specified system tag identifier from the specified root condition.
        Specified by:
        extractConditionBySystemTag in interface DefinitionsService
        Parameters:
        rootCondition - the root condition where to start the extraction by class
        systemTag - the tag to use to extract the condition
        Returns:
        Condition the condition that has been found matching the tag, or null if none matched
      • resolveConditionType

        public boolean resolveConditionType​(Condition rootCondition)
        Description copied from interface: DefinitionsService
        Resolves (if possible) the ConditionTypes for the specified condition and its sub-conditions (if any) from the type identifiers existing on the specified condition TODO: remove from API and move to a different class?
        Specified by:
        resolveConditionType in interface DefinitionsService
        Parameters:
        rootCondition - the condition for which we want to resolve the condition types from the existing condition type identifiers
        Returns:
        true
      • refresh

        public void refresh()
        Description copied from interface: DefinitionsService
        Forces a refresh of the definitions from the persistence service. Warning: this may seriously impact performance so it is recommended to use this in specific cases such as for example in integration tests.
        Specified by:
        refresh in interface DefinitionsService