-
Notifications
You must be signed in to change notification settings - Fork 3
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 #47 from blackducksoftware/dev/jpp/master/IDETECT-…
…3457-upg-trans-guide IDETECT-3547 - Upgrade Guidance on transitive dependancies
- Loading branch information
Showing
44 changed files
with
1,738 additions
and
29 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
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
43 changes: 43 additions & 0 deletions
43
...tegration/blackduck/api/generated/component/ComponentVersionSbomFieldsItemsValueView.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,43 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
import com.synopsys.integration.blackduck.api.generated.enumeration.ComponentVersionSbomFieldsItemsValueType; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class ComponentVersionSbomFieldsItemsValueView extends BlackDuckComponent { | ||
private String email; | ||
private String name; | ||
private ComponentVersionSbomFieldsItemsValueType type; | ||
|
||
public String getEmail() { | ||
return email; | ||
} | ||
|
||
public void setEmail(String email) { | ||
this.email = email; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public ComponentVersionSbomFieldsItemsValueType getType() { | ||
return type; | ||
} | ||
|
||
public void setType(ComponentVersionSbomFieldsItemsValueType type) { | ||
this.type = type; | ||
} | ||
|
||
} |
43 changes: 43 additions & 0 deletions
43
...ynopsys/integration/blackduck/api/generated/component/ComponentVersionSbomFieldsView.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,43 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
import com.synopsys.integration.blackduck.api.generated.component.ComponentVersionSbomFieldsItemsValueView; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class ComponentVersionSbomFieldsView extends BlackDuckComponent { | ||
private String fieldName; | ||
private String label; | ||
private ComponentVersionSbomFieldsItemsValueView value; | ||
|
||
public String getFieldName() { | ||
return fieldName; | ||
} | ||
|
||
public void setFieldName(String fieldName) { | ||
this.fieldName = fieldName; | ||
} | ||
|
||
public String getLabel() { | ||
return label; | ||
} | ||
|
||
public void setLabel(String label) { | ||
this.label = label; | ||
} | ||
|
||
public ComponentVersionSbomFieldsItemsValueView getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(ComponentVersionSbomFieldsItemsValueView value) { | ||
this.value = value; | ||
} | ||
|
||
} |
34 changes: 34 additions & 0 deletions
34
...omponent/DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView.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,34 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
import com.synopsys.integration.blackduck.api.generated.component.DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView extends BlackDuckComponent { | ||
private String versionName; | ||
private DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView vulnerabilityRisk; | ||
|
||
public String getVersionName() { | ||
return versionName; | ||
} | ||
|
||
public void setVersionName(String versionName) { | ||
this.versionName = versionName; | ||
} | ||
|
||
public DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView getVulnerabilityRisk() { | ||
return vulnerabilityRisk; | ||
} | ||
|
||
public void setVulnerabilityRisk(DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView vulnerabilityRisk) { | ||
this.vulnerabilityRisk = vulnerabilityRisk; | ||
} | ||
|
||
} |
61 changes: 61 additions & 0 deletions
61
...rScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView.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,61 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import java.math.BigDecimal; | ||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceVulnerabilityRiskView extends BlackDuckComponent { | ||
private BigDecimal critical; | ||
private BigDecimal high; | ||
private BigDecimal low; | ||
private BigDecimal medium; | ||
private BigDecimal unscored; | ||
|
||
public BigDecimal getCritical() { | ||
return critical; | ||
} | ||
|
||
public void setCritical(BigDecimal critical) { | ||
this.critical = critical; | ||
} | ||
|
||
public BigDecimal getHigh() { | ||
return high; | ||
} | ||
|
||
public void setHigh(BigDecimal high) { | ||
this.high = high; | ||
} | ||
|
||
public BigDecimal getLow() { | ||
return low; | ||
} | ||
|
||
public void setLow(BigDecimal low) { | ||
this.low = low; | ||
} | ||
|
||
public BigDecimal getMedium() { | ||
return medium; | ||
} | ||
|
||
public void setMedium(BigDecimal medium) { | ||
this.medium = medium; | ||
} | ||
|
||
public BigDecimal getUnscored() { | ||
return unscored; | ||
} | ||
|
||
public void setUnscored(BigDecimal unscored) { | ||
this.unscored = unscored; | ||
} | ||
|
||
} |
34 changes: 34 additions & 0 deletions
34
...mponent/DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView.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,34 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
import com.synopsys.integration.blackduck.api.generated.component.DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView extends BlackDuckComponent { | ||
private String versionName; | ||
private DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView vulnerabilityRisk; | ||
|
||
public String getVersionName() { | ||
return versionName; | ||
} | ||
|
||
public void setVersionName(String versionName) { | ||
this.versionName = versionName; | ||
} | ||
|
||
public DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView getVulnerabilityRisk() { | ||
return vulnerabilityRisk; | ||
} | ||
|
||
public void setVulnerabilityRisk(DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView vulnerabilityRisk) { | ||
this.vulnerabilityRisk = vulnerabilityRisk; | ||
} | ||
|
||
} |
61 changes: 61 additions & 0 deletions
61
...ScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView.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,61 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import java.math.BigDecimal; | ||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceVulnerabilityRiskView extends BlackDuckComponent { | ||
private BigDecimal critical; | ||
private BigDecimal high; | ||
private BigDecimal low; | ||
private BigDecimal medium; | ||
private BigDecimal unscored; | ||
|
||
public BigDecimal getCritical() { | ||
return critical; | ||
} | ||
|
||
public void setCritical(BigDecimal critical) { | ||
this.critical = critical; | ||
} | ||
|
||
public BigDecimal getHigh() { | ||
return high; | ||
} | ||
|
||
public void setHigh(BigDecimal high) { | ||
this.high = high; | ||
} | ||
|
||
public BigDecimal getLow() { | ||
return low; | ||
} | ||
|
||
public void setLow(BigDecimal low) { | ||
this.low = low; | ||
} | ||
|
||
public BigDecimal getMedium() { | ||
return medium; | ||
} | ||
|
||
public void setMedium(BigDecimal medium) { | ||
this.medium = medium; | ||
} | ||
|
||
public BigDecimal getUnscored() { | ||
return unscored; | ||
} | ||
|
||
public void setUnscored(BigDecimal unscored) { | ||
this.unscored = unscored; | ||
} | ||
|
||
} |
44 changes: 44 additions & 0 deletions
44
...ackduck/api/generated/component/DeveloperScansScanItemsTransitiveUpgradeGuidanceView.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,44 @@ | ||
/* | ||
* blackduck-common-api | ||
* | ||
* Copyright (c) 2023 Synopsys, Inc. | ||
* | ||
* Use subject to the terms and conditions of the Synopsys End User Software License and Maintenance Agreement. All rights reserved worldwide. | ||
*/ | ||
package com.synopsys.integration.blackduck.api.generated.component; | ||
|
||
import com.synopsys.integration.blackduck.api.core.BlackDuckComponent; | ||
import com.synopsys.integration.blackduck.api.generated.component.DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView; | ||
import com.synopsys.integration.blackduck.api.generated.component.DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView; | ||
|
||
// this file should not be edited - if changes are necessary, the generator should be updated, then this file should be re-created | ||
public class DeveloperScansScanItemsTransitiveUpgradeGuidanceView extends BlackDuckComponent { | ||
private String externalId; | ||
private DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView longTermUpgradeGuidance; | ||
private DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView shortTermUpgradeGuidance; | ||
|
||
public String getExternalId() { | ||
return externalId; | ||
} | ||
|
||
public void setExternalId(String externalId) { | ||
this.externalId = externalId; | ||
} | ||
|
||
public DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView getLongTermUpgradeGuidance() { | ||
return longTermUpgradeGuidance; | ||
} | ||
|
||
public void setLongTermUpgradeGuidance(DeveloperScansScanItemsTransitiveUpgradeGuidanceLongTermUpgradeGuidanceView longTermUpgradeGuidance) { | ||
this.longTermUpgradeGuidance = longTermUpgradeGuidance; | ||
} | ||
|
||
public DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView getShortTermUpgradeGuidance() { | ||
return shortTermUpgradeGuidance; | ||
} | ||
|
||
public void setShortTermUpgradeGuidance(DeveloperScansScanItemsTransitiveUpgradeGuidanceShortTermUpgradeGuidanceView shortTermUpgradeGuidance) { | ||
this.shortTermUpgradeGuidance = shortTermUpgradeGuidance; | ||
} | ||
|
||
} |
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.