-
Notifications
You must be signed in to change notification settings - Fork 24
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 #488 from Privado-Inc/dev
add - soap api and collection point where method is denoted by webser…
- Loading branch information
Showing
17 changed files
with
630 additions
and
108 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
42 changes: 42 additions & 0 deletions
42
src/main/scala/ai/privado/audit/AuditReportConstants.scala
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,42 @@ | ||
package ai.privado.audit | ||
|
||
object AuditReportConstants { | ||
|
||
val AUDIT_ELEMENT_DISCOVERY_SHEET_NAME = "Element-Discovery" | ||
|
||
val AUDIT_EMPTY_CELL_VALUE = "--" | ||
|
||
val AUDIT_CHECKED_VALUE = "YES" | ||
|
||
val AUDIT_NOT_CHECKED_VALUE = "NO" | ||
|
||
val AUDIT_BUILT_IN_CLASS_REGEX = | ||
"\\b((int|byte|short|long|float|double|boolean|char)|((java\\.|javax\\.|org\\.|com\\.sun\\.|com\\.oracle\\.)([A-Z][a-zA-Z0-9_]*(\\.[A-Z][a-zA-Z0-9_]*)*)))\\b" | ||
|
||
val ELEMENT_DISCOVERY_CLASS_NAME = "Class" | ||
|
||
val ELEMENT_DISCOVERY_FILE_NAME = "File Name" | ||
|
||
val ELEMENT_DISCOVERY_MEMBER_NAME = "Member" | ||
|
||
val ELEMENT_DISCOVERY_MEMBER_TYPE = "Member Type" | ||
|
||
val ELEMENT_DISCOVERY_TAGGED_NAME = "Tagged" | ||
|
||
val ELEMENT_DISCOVERY_SOURCE_RULE_ID = "Source Rule ID" | ||
|
||
val ELEMENT_DISCOVERY_INPUT_COLLECTION = "Input to Collection" | ||
|
||
val ELEMENT_DISCOVERY_COLLECTION_ENDPOINT = "Collection Endpoint Path" | ||
|
||
val ELEMENT_DISCOVERY_METHOD_NAME = "Collection Method Full Name" | ||
|
||
val ELEMENT_DISCOVERY_EXCLUDE_CLASS_NAME_REGEX = "^(.*)(Controller|Service|Impl|Helper|Util|Processor|Dao)$" | ||
|
||
val ELEMENT_DISCOVERY_GET_SET_METHOD_REGEX = "^(get|set).*" | ||
|
||
val ELEMENT_DISCOVERY_OVERRIDE_METHOD_REGEX = "^(hascode|equals)" | ||
|
||
val ELEMENT_DISCOVERY_GETTER_SETTER_REGEX = ".*(Getter|Setter).*" | ||
|
||
} |
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
Oops, something went wrong.