Class SourcePreUpdateDataEvent

    • Constructor Detail

      • SourcePreUpdateDataEvent

        public SourcePreUpdateDataEvent​(Source<?> source,
                                        IParameters parameters,
                                        String itemId)
        Creates a new event for update of source data.
        Parameters:
        source - the source.
        parameters - the data provided to the update operation as parameters.
        itemId - the item identifier of the data being updated.
        Since:
        10.4.0
    • Method Detail

      • getOriginalData

        public List<ISourceData> getOriginalData()
        Returns the data that corresponds to the item identifier being updated.

        This method may require reading the data from the persistence. So if the required information is available using another method of this event, it may be more efficient to use that other method.

        Returns:
        the data returned by Source.readData(String...) for SourceUpdateDataEvent.getOriginalItemId(). For optimizations purpose, the returned data is reused on multiple calls to this method and it must not be modified to prevent incorrect result on future calls to this method.
        Since:
        10.4.0