Interface StorePreUpdateRequestContext

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      com.unboundid.scim2.common.messages.PatchRequest getPatchRequest()
      Retrieve the SCIM patch request specifying the modifications to be processed.
      com.unboundid.scim2.common.filters.Filter getSCIMFilter()
      Retrieve the filter which identifies the entry to be updated.
      void setPatchRequest​(com.unboundid.scim2.common.messages.PatchRequest patchRequest)
      Sets the SCIM patch request specifying the modifications to be processed.
      void setSCIMFilter​(com.unboundid.scim2.common.filters.Filter scimFilter)
      Sets the SCIM filter which identifies the entry to be updated.
    • Method Detail

      • getSCIMFilter

        com.unboundid.scim2.common.filters.Filter getSCIMFilter()
        Retrieve the filter which identifies the entry to be updated. The UnboundID scim2 SDK Filter class can be used to parse a SCIM filter.
        Returns:
        The filter which identifies the entry to be updated.
      • setSCIMFilter

        void setSCIMFilter​(com.unboundid.scim2.common.filters.Filter scimFilter)
        Sets the SCIM filter which identifies the entry to be updated.
        Parameters:
        scimFilter - The SCIM filter which identifies the entry to be updated.
      • getPatchRequest

        com.unboundid.scim2.common.messages.PatchRequest getPatchRequest()
        Retrieve the SCIM patch request specifying the modifications to be processed.
        Returns:
        The SCIM patch request specifying the modifications to be processed.
      • setPatchRequest

        void setPatchRequest​(com.unboundid.scim2.common.messages.PatchRequest patchRequest)
        Sets the SCIM patch request specifying the modifications to be processed.
        Parameters:
        patchRequest - The SCIM patch request specifying the modifications to be processed.