-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated references to Scenario-Verifier
- Loading branch information
1 parent
f16d707
commit 6446353
Showing
3 changed files
with
43 additions
and
25 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
21 changes: 21 additions & 0 deletions
21
maestro-webapi/src/main/java/org/intocps/maestro/webapi/maestro2/dto/VerificationResult.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,21 @@ | ||
package org.intocps.maestro.webapi.maestro2.dto; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
public class VerificationResult { | ||
@JsonProperty("correct") | ||
public Boolean correct; | ||
@JsonProperty("masterModel") | ||
public String masterModel; | ||
@JsonProperty("errorMessage") | ||
public String errorMessage; | ||
|
||
public VerificationResult() { | ||
} | ||
|
||
public VerificationResult(Boolean correct, String masterModel, String errorMessage) { | ||
this.correct = correct; | ||
this.masterModel = masterModel; | ||
this.errorMessage = errorMessage; | ||
} | ||
} |