Interface PersistentFieldManager

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void discardChanges​(java.lang.String pageName)
      Discards all changes for the indicated page.
      void discardChanges​(java.lang.String pageName, java.lang.String strategyName)
      Discards changes on the indicated page for a specific strategy only.
      PersistentFieldBundle gatherChanges​(java.lang.String pageName)
      Locates all persistently stored changes to all properties within the page (for the current session and request) and gathers them together into a bundle.
      void postChange​(java.lang.String pageName, ComponentResources resources, java.lang.String fieldName, java.lang.Object newValue)
      Posts a change of a persistent property.
    • Method Detail

      • postChange

        void postChange​(java.lang.String pageName,
                        ComponentResources resources,
                        java.lang.String fieldName,
                        java.lang.Object newValue)
        Posts a change of a persistent property.
        Parameters:
        pageName - the logical name of the page containing the component
        resources - the resources for the component or mixin (used to determine the persistence strategy)
        fieldName - the name of the field whose persistent value has changed
        newValue - the new value for the field, possibly null
      • gatherChanges

        PersistentFieldBundle gatherChanges​(java.lang.String pageName)
        Locates all persistently stored changes to all properties within the page (for the current session and request) and gathers them together into a bundle.
        Parameters:
        pageName - the logical name of the page to gather changes for
        Returns:
        a bundle identifying all such changes
      • discardChanges

        void discardChanges​(java.lang.String pageName)
        Discards all changes for the indicated page. This will not affect pages that have already been attached to this request, but will affect subsequent page attachments in this and later requests.
        Parameters:
        pageName - logical name of page whose persistent field data is to be discarded
      • discardChanges

        void discardChanges​(java.lang.String pageName,
                            java.lang.String strategyName)
        Discards changes on the indicated page for a specific strategy only. This will not affect pages that have already been attached to this request, but will affect subsequent page attachments in this and later requests.
        Parameters:
        pageName - logical name of page whose persistent field data is to be discarded
        strategyName - name of the strategy of which field data is to be discarded