Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2 -> v4 Migration (#128) #129

Merged
merged 9 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* © Copyright HCL Technologies Ltd. 2019, 2024.
* © Copyright HCL Technologies Ltd. 2019,2020.
* LICENSE: Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0
*/

Expand Down
5 changes: 2 additions & 3 deletions src/main/java/com/hcl/appscan/sdk/scan/IScan.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* © Copyright IBM Corporation 2016.
* © Copyright HCL Technologies Ltd. 2017, 2024.
* © Copyright HCL Technologies Ltd. 2017.
* LICENSE: Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0
*/

Expand All @@ -10,7 +10,6 @@
import com.hcl.appscan.sdk.error.ScannerException;
import com.hcl.appscan.sdk.logging.IProgress;
import com.hcl.appscan.sdk.results.IResultsProvider;
import org.apache.wink.json4j.JSONException;

public interface IScan {

Expand Down Expand Up @@ -59,4 +58,4 @@ public interface IScan {
public IScanServiceProvider getServiceProvider();

public String getReportFormat();
}
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* © Copyright IBM Corporation 2016.
* © Copyright HCL Technologies Ltd. 2017, 2024.
* © Copyright HCL Technologies Ltd. 2017,2018.
* LICENSE: Apache License, Version 2.0 https://www.apache.org/licenses/LICENSE-2.0
*/

Expand Down Expand Up @@ -31,7 +31,7 @@ public interface IScanServiceProvider {
* @return The id of the submitted scan, if successful. Otherwise, null.
*/
public String createAndExecuteScan(String type, Map<String, String> params);

/**
* Submits a file for scanning.
*
Expand Down
Loading