-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: query compareconfig by category
- Loading branch information
rchen9
committed
Dec 7, 2023
1 parent
fedaa31
commit 5bec638
Showing
9 changed files
with
139 additions
and
39 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
19 changes: 19 additions & 0 deletions
19
...arextest/web/model/contract/contracts/config/replay/QueryConfigOfCategoryRequestType.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,19 @@ | ||
package com.arextest.web.model.contract.contracts.config.replay; | ||
|
||
import javax.validation.constraints.NotBlank; | ||
import javax.validation.constraints.NotEmpty; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class QueryConfigOfCategoryRequestType { | ||
@NotBlank(message = "appId can not be blank") | ||
private String appId; | ||
|
||
private String operationName; | ||
|
||
private String categoryName; | ||
|
||
@NotEmpty(message = "entryPoint can not be empty") | ||
private Boolean entryPoint; | ||
|
||
} |
9 changes: 9 additions & 0 deletions
9
...rextest/web/model/contract/contracts/config/replay/QueryConfigOfCategoryResponseType.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,9 @@ | ||
package com.arextest.web.model.contract.contracts.config.replay; | ||
|
||
import java.util.Set; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class QueryConfigOfCategoryResponseType extends ComparisonSummaryConfiguration { | ||
private Set<String> ignoreNodeSet; | ||
} |