-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #190 from vharsh/release_merge
[INJICERT-657] merge release-0.10.x to develop
- Loading branch information
Showing
131 changed files
with
4,498 additions
and
3,393 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
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
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
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
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
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
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
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
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
14 changes: 14 additions & 0 deletions
14
certify-core/src/main/java/io/mosip/certify/core/exception/RenderingTemplateException.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,14 @@ | ||
package io.mosip.certify.core.exception; | ||
|
||
public class RenderingTemplateException extends RuntimeException { | ||
private String errorCode; | ||
|
||
public RenderingTemplateException(String errorCode) { | ||
super(errorCode); | ||
this.errorCode = errorCode; | ||
} | ||
|
||
public String getErrorCode() { | ||
return errorCode; | ||
} | ||
} |
21 changes: 0 additions & 21 deletions
21
certify-core/src/main/java/io/mosip/certify/core/exception/TemplateException.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
certify-core/src/main/java/io/mosip/certify/core/repository/TemplateRepository.java
This file was deleted.
Oops, something went wrong.
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
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
8 changes: 0 additions & 8 deletions
8
certify-core/src/main/java/io/mosip/certify/core/validators/CredentialRequestValidator.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
...ore/src/main/java/io/mosip/certify/core/validators/CredentialRequestValidatorFactory.java
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...-core/src/main/java/io/mosip/certify/core/validators/LdpVcCredentialRequestValidator.java
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
...ore/src/main/java/io/mosip/certify/core/validators/MsoMdocCredentialRequestValidator.java
This file was deleted.
Oops, something went wrong.
13 changes: 13 additions & 0 deletions
13
certify-integration-api/src/main/java/io/mosip/certify/api/dto/RenderingTemplateDTO.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,13 @@ | ||
package io.mosip.certify.api.dto; | ||
|
||
import lombok.Data; | ||
|
||
import java.time.LocalDateTime; | ||
|
||
@Data | ||
public class RenderingTemplateDTO { | ||
private String id; | ||
private String template; | ||
private LocalDateTime createdTimes; | ||
private LocalDateTime updatedTimes; | ||
} |
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
15 changes: 0 additions & 15 deletions
15
certify-integration-api/src/main/java/io/mosip/certify/api/spi/VCFormatter.java
This file was deleted.
Oops, something went wrong.
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
10 changes: 0 additions & 10 deletions
10
certify-integration-api/src/main/java/io/mosip/certify/api/spi/VCSigner.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.