Skip to content

Commit

Permalink
Use AppScan instead of ASoC (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmurp authored Oct 27, 2023
1 parent c949884 commit 98b78aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,19 @@ const _DOWNLOADING_CLIENT = 'Downloading the SAClientUtil...';
export { _DOWNLOADING_CLIENT as DOWNLOADING_CLIENT };
const _GENERATING_IRX = 'Generating irx file...';
export { _GENERATING_IRX as GENERATING_IRX };
const _AUTHENTICATE_ASOC = 'Authenticating with the ASoC service...';
const _AUTHENTICATE_ASOC = 'Authenticating with the AppScan service...';
export { _AUTHENTICATE_ASOC as AUTHENTICATE_ASOC };
const _SUBMITTING_IRX = 'Submitting the irx for analysis...';
export { _SUBMITTING_IRX as SUBMITTING_IRX };
const _IRX_SUBMIT_SUCCESS = 'Successfully submitted the irx to the ASoC service.';
const _IRX_SUBMIT_SUCCESS = 'Successfully submitted the irx to the AppScan service.';
export { _IRX_SUBMIT_SUCCESS as IRX_SUBMIT_SUCCESS };
const _WAIT_FOR_ANALYSIS = 'Waiting for analysis to complete...';
export { _WAIT_FOR_ANALYSIS as WAIT_FOR_ANALYSIS };
const _GETTING_RESULTS = 'Getting results...';
export { _GETTING_RESULTS as GETTING_RESULTS };
const _ANALYSIS_SUCCESS = 'Analysis complete.';
export { _ANALYSIS_SUCCESS as ANALYSIS_SUCCESS };
const _ANALYSIS_TIMEOUT = 'Timed out waiting for analysis to complete. Review the scan in ASoC to see the results.'
const _ANALYSIS_TIMEOUT = 'Timed out waiting for analysis to complete. Review the scan in AppScan to see the results.'
export { _ANALYSIS_TIMEOUT as ANALYSIS_TIMEOUT };
const _TOTAL_ISSUES = 'Total issues: ';
export { _TOTAL_ISSUES as TOTAL_ISSUES };
Expand All @@ -61,7 +61,7 @@ const _ERROR_FILE_DOES_NOT_EXIST = 'An error occurred extracting the SAClientUti
export { _ERROR_FILE_DOES_NOT_EXIST as ERROR_FILE_DOES_NOT_EXIST };
const _ERROR_INVALID_APP_ID = 'Invalid application ID.'
export { _ERROR_INVALID_APP_ID as ERROR_INVALID_APP_ID };
const _ERROR_ANALYSIS_FAILED = 'Analysis failed. Review the scan in ASoC for additional details.'
const _ERROR_ANALYSIS_FAILED = 'Analysis failed. Review the scan in AppScan for additional details.'
export { _ERROR_ANALYSIS_FAILED as ERROR_ANALYSIS_FAILED };
const _ERROR_NONCOMPLIANT_ISSUES = 'Failed. Non-compliant issues were found in the scan.';
export { _ERROR_NONCOMPLIANT_ISSUES as ERROR_NONCOMPLIANT_ISSUES };
Expand Down

0 comments on commit 98b78aa

Please sign in to comment.