Interface ISavedArtifactUpdateAuditEvent

All Superinterfaces:
IAuditEvent, ISavedArtifactInfo

public interface ISavedArtifactUpdateAuditEvent extends ISavedArtifactInfo, IAuditEvent
An event that was generated during the processing of a "saved artifact update" operation. ISavedArtifactUpdateAuditEvent makes information about the operation available to the audit logging mechanism.
Since:
13.3
  • Method Details

    • getOldName

      Optional<String> getOldName()
      Gets a String that contains the previous name of the artifact, if the operation modified it.
      Returns:
      See above.
    • getOldDescription

      Optional<String> getOldDescription()
      Gets a String that contains the previous description of the artifact, if the operation modified it.
      Returns:
      See above.
    • getOldLocation

      Optional<String> getOldLocation()
      Gets a String that contains the previous location ("path") of the artifact, if the operation modified it.
      Returns:
      See above.
    • getOldArtifact

      Optional<String> getOldArtifact()
      Gets a String that represents the previous contents of the artifact, if the operation modified them.
      Returns:
      See above.
    • getOldAccessControl

      Optional<List<IAccessControl>> getOldAccessControl()
      Gets the previous access control list associated with the artifact, if the operation modified it.
      Returns:
      See above.