-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MOSIP-29868] Improved Demographic deduplication process (#1797)
[MOSIP-29868] updated 1.1.5.5
- Loading branch information
Showing
17 changed files
with
2,509 additions
and
1,829 deletions.
There are no files selected for viewing
43 changes: 22 additions & 21 deletions
43
.../src/main/java/io/mosip/registration/processor/abis/handler/dto/DataShareResponseDto.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 |
---|---|---|
@@ -1,21 +1,22 @@ | ||
package io.mosip.registration.processor.abis.handler.dto; | ||
|
||
import io.mosip.registration.processor.core.common.rest.dto.BaseRestResponseDTO; | ||
import io.mosip.registration.processor.core.common.rest.dto.ErrorDTO; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
import java.util.List; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class DataShareResponseDto extends BaseRestResponseDTO { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
|
||
private DataShare dataShare; | ||
|
||
|
||
private List<ErrorDTO> errors; | ||
} | ||
package io.mosip.registration.processor.abis.handler.dto; | ||
|
||
import java.util.List; | ||
|
||
import io.mosip.registration.processor.core.common.rest.dto.BaseRestResponseDTO; | ||
import io.mosip.registration.processor.core.common.rest.dto.ErrorDTO; | ||
import io.mosip.registration.processor.core.packet.dto.abis.DataShare; | ||
import lombok.Data; | ||
import lombok.EqualsAndHashCode; | ||
|
||
@Data | ||
@EqualsAndHashCode(callSuper = true) | ||
public class DataShareResponseDto extends BaseRestResponseDTO { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
|
||
private DataShare dataShare; | ||
|
||
|
||
private List<ErrorDTO> errors; | ||
} |
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
Oops, something went wrong.