Class UserPasswordResetEvent
java.lang.Object
es.kukenan.smartfi.events.common.AbstractEvent<B>
es.kukenan.smartfi.microservice.clients.events.AbstractUsersEvent<UserPasswordResetEventBody>
es.kukenan.smartfi.microservice.clients.events.pwdreset.UserPasswordResetEvent
- All Implemented Interfaces:
es.kukenan.smartfi.events.common.Event
Class that describes the contract of the user created event.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringUnique platform event type identifier.static final StringEvent version.Fields inherited from class es.kukenan.smartfi.microservice.clients.events.AbstractUsersEvent
CONTEXTFields inherited from class es.kukenan.smartfi.events.common.AbstractEvent
UTC -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.UserPasswordResetEvent(String requestId, String companyId, String origin, String operationType, String messageId, Long creationTs, String channel, String session, String manager, String userId, UserPasswordResetEventBody body) State constructor.UserPasswordResetEvent(String requestId, String companyId, String origin, String operationType, String messageId, Long creationTs, String channel, String session, String manager, String userId, UserPasswordResetEventBody body, String userIp, String userAgent) State constructor. -
Method Summary
Methods inherited from class es.kukenan.smartfi.events.common.AbstractEvent
canEqual, equals, getBody, getChannel, getCompanyId, getContext, getCreationDate, getCreationTs, getManager, getMessageId, getOperationType, getOrigin, getRequestId, getSession, getTypeId, getUserAgent, getUserId, getUserIp, getVersion, hashCode, setBody, setChannel, setCompanyId, setCreationDate, setCreationTs, setManager, setMessageId, setOperationType, setOrigin, setRequestId, setSession, setUserAgent, setUserId, setUserIp, setVersion, toString
-
Field Details
-
TYPE_ID
Unique platform event type identifier.- See Also:
-
VERSION
Event version.- See Also:
-
-
Constructor Details
-
UserPasswordResetEvent
public UserPasswordResetEvent()Default constructor. -
UserPasswordResetEvent
public UserPasswordResetEvent(String requestId, String companyId, String origin, String operationType, String messageId, Long creationTs, String channel, String session, String manager, String userId, UserPasswordResetEventBody body) State constructor.- Parameters:
requestId- the request identifier (transaction).companyId- company/bank identifier (multi-tenant context, BC/BF).origin- service that have produced this event.operationType- operation type (some kind of event sub-type).messageId- arbitrary application-specific identifier for the message/event.creationTs- event creation timestamp (milliseconds from epoch).channel- event channel.session- session identifier.manager- manager that generate event.userId- user identifier.body- event body.
-
UserPasswordResetEvent
public UserPasswordResetEvent(String requestId, String companyId, String origin, String operationType, String messageId, Long creationTs, String channel, String session, String manager, String userId, UserPasswordResetEventBody body, String userIp, String userAgent) State constructor.- Parameters:
requestId- the request identifier (transaction).companyId- company/bank identifier (multi-tenant context, BC/BF).origin- service that have produced this event.operationType- operation type (some kind of event sub-type).messageId- arbitrary application-specific identifier for the message/event.creationTs- event creation timestamp (milliseconds from epoch).channel- event channel.session- session identifier.manager- manager that generate event.userId- user identifier.body- event body.userIp- user IP Address.userAgent- user-agent header info.
-