Class AfterSecretLeaseRevocationEvent
java.lang.Object
java.util.EventObject
org.springframework.context.ApplicationEvent
org.springframework.vault.core.lease.event.SecretLeaseEvent
org.springframework.vault.core.lease.event.AfterSecretLeaseRevocationEvent
- All Implemented Interfaces:
Serializable
Event published after revoking a
Lease
for a RequestedSecret
. The
secrets associated with Lease
should be considered invalid at the time this
event is received.- Author:
- Mark Paluch
- See Also:
-
Field Summary
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorsConstructorDescriptionAfterSecretLeaseRevocationEvent
(RequestedSecret requestedSecret, Lease lease) -
Method Summary
Methods inherited from class org.springframework.vault.core.lease.event.SecretLeaseEvent
getLease, getSource
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
Methods inherited from class java.util.EventObject
toString
-
Constructor Details
-
AfterSecretLeaseRevocationEvent
- Parameters:
requestedSecret
- must not be null.lease
- must not be null.
-