-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ritik Jain (IN74108) <[email protected]>
- Loading branch information
Ritik Jain (IN74108)
committed
May 17, 2024
1 parent
6027bd1
commit 4e83c34
Showing
3 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
...rc/main/java/io/mosip/authentication/common/service/impl/idevent/RemoveIdStatusEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package io.mosip.authentication.common.service.impl.idevent; | ||
|
||
import java.util.Map; | ||
|
||
import io.mosip.authentication.common.service.websub.dto.EventInterface; | ||
import lombok.Data; | ||
|
||
/** | ||
* Instantiates a new remove id status event. | ||
* | ||
* @author Ritik Jain | ||
*/ | ||
@Data | ||
public class RemoveIdStatusEvent implements EventInterface { | ||
|
||
/** The id. */ | ||
private String id; | ||
|
||
/** The timestamp. */ | ||
private String timestamp; | ||
|
||
/** The data. */ | ||
private Map<String, Object> data; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters