-
Notifications
You must be signed in to change notification settings - Fork 213
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
20e4a83
commit d18b624
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
libs/dao/src/main/java/com/akto/dto/testing/config/TestCollectionConfig.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,12 @@ | ||
package com.akto.dto.testing.config; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
public class TestCollectionConfig { | ||
Map<String, String> tokenKeyToCustomAuthHexId; | ||
|
||
|
||
|
||
|
||
} |
70 changes: 70 additions & 0 deletions
70
libs/dao/src/main/java/com/akto/dto/testing/config/TestCollectionProperty.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,70 @@ | ||
package com.akto.dto.testing.config; | ||
|
||
import com.akto.util.enums.GlobalEnums; | ||
|
||
import java.util.List; | ||
|
||
public class TestCollectionProperty { | ||
|
||
public enum Status { | ||
PENDING, DONE | ||
} | ||
public enum Type { | ||
CUSTOM_AUTH, TEST_YAML_KEYWORD, ROLE | ||
} | ||
String name; | ||
String lastUpdatedUser; | ||
int lastUpdatedEpoch; | ||
List<String> values; | ||
List<GlobalEnums.TestCategory> impactingCategories; | ||
int apiCollectionId; | ||
|
||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getLastUpdatedUser() { | ||
return lastUpdatedUser; | ||
} | ||
|
||
public void setLastUpdatedUser(String lastUpdatedUser) { | ||
this.lastUpdatedUser = lastUpdatedUser; | ||
} | ||
|
||
public int getLastUpdatedEpoch() { | ||
return lastUpdatedEpoch; | ||
} | ||
|
||
public void setLastUpdatedEpoch(int lastUpdatedEpoch) { | ||
this.lastUpdatedEpoch = lastUpdatedEpoch; | ||
} | ||
|
||
public List<String> getValues() { | ||
return values; | ||
} | ||
|
||
public void setValues(List<String> values) { | ||
this.values = values; | ||
} | ||
|
||
public List<GlobalEnums.TestCategory> getImpactingCategories() { | ||
return impactingCategories; | ||
} | ||
|
||
public void setImpactingCategories(List<GlobalEnums.TestCategory> impactingCategories) { | ||
this.impactingCategories = impactingCategories; | ||
} | ||
|
||
public int getApiCollectionId() { | ||
return apiCollectionId; | ||
} | ||
|
||
public void setApiCollectionId(int apiCollectionId) { | ||
this.apiCollectionId = apiCollectionId; | ||
} | ||
} |