Interface ChangeListener

    • Method Detail

      • changeExecuted

        void changeExecuted​(ChangeRequest change)
        React to a change request has been successfully executed. This method is called after a change request has been executed successfully.
        Parameters:
        change - The change that has been executed, or null if the change was not done via a ChangeRequest.
      • changeFailed

        void changeFailed​(ChangeRequest change,
                          java.lang.Exception exception)
        React to a change request has resulted in an exception. This method is called after a change request was executed, but during the execution an exception was thrown.
        Parameters:
        change - The change that was attempted or null if the change was not done via a ChangeRequest.
        exception - The exception that resulted.