Skip to content

Commit

Permalink
1086 Changes Commited
Browse files Browse the repository at this point in the history
  • Loading branch information
satyamchaurasiapersistent committed Nov 20, 2022
1 parent 4749d30 commit 8dd950d
Show file tree
Hide file tree
Showing 2 changed files with 120 additions and 105 deletions.
11 changes: 10 additions & 1 deletion src/main/java/com/checkmarx/sdk/dto/cx/CxScanParams.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.checkmarx.sdk.dto.cx;

import lombok.Getter;
import lombok.Setter;

import java.util.List;
import java.util.Map;
Expand Down Expand Up @@ -36,6 +37,9 @@ public class CxScanParams {
@Getter
private String clientSecret;

@Getter @Setter
private String modifiedProjectName;

public String getTeamName() {
return teamName;
}
Expand Down Expand Up @@ -247,6 +251,11 @@ public CxScanParams withScanPreset(String scanPreset) {
return this;
}

public CxScanParams withModifiedProjectName(String modifiedProjectName) {
this.modifiedProjectName = modifiedProjectName;
return this;
}

public CxScanParams withScanConfiguration(String scanConfiguration) {
this.scanConfiguration = scanConfiguration;
return this;
Expand Down Expand Up @@ -354,7 +363,7 @@ public boolean isGitSource(){
public boolean isFileSource(){
return getSourceType().equals(Type.FILE);
}

@Override
public String toString() {
return "CxScanParams{" +
Expand Down
Loading

0 comments on commit 8dd950d

Please sign in to comment.