-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
relying party overrides validation against JSON schema
- Loading branch information
Showing
6 changed files
with
466 additions
and
440 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
.../internet2/tier/shibboleth/admin/ui/jsonschema/JsonSchemaValidationFailedException.groovy
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,16 @@ | ||
package edu.internet2.tier.shibboleth.admin.ui.jsonschema | ||
|
||
/** | ||
* Indicates JSON schema validation failure. Encapsulates a list of error messages produced by JSON schema validator | ||
* component. | ||
* | ||
* @author Dmitriy Kopylenko | ||
*/ | ||
class JsonSchemaValidationFailedException extends RuntimeException { | ||
|
||
def errors | ||
|
||
JsonSchemaValidationFailedException(List<String> errors) { | ||
this.errors = 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
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
20 changes: 0 additions & 20 deletions
20
...du/internet2/tier/shibboleth/admin/ui/jsonschema/JsonSchemaValidationFailedException.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
Oops, something went wrong.