com.metaeffekt.artifact.enrichment.configurations.VulnerabilitiesFromCpeEnrichmentConfiguration Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2021-2024 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.metaeffekt.artifact.enrichment.configurations;
import org.metaeffekt.core.inventory.processor.configuration.ProcessConfiguration;
import org.metaeffekt.core.inventory.processor.configuration.ProcessMisconfiguration;
import java.util.LinkedHashMap;
import java.util.List;
public abstract class VulnerabilitiesFromCpeEnrichmentConfiguration extends ProcessConfiguration {
private int maxCorrelatedVulnerabilitiesPerArtifact = Integer.MAX_VALUE;
public VulnerabilitiesFromCpeEnrichmentConfiguration setMaxCorrelatedVulnerabilitiesPerArtifact(int maxCorrelatedVulnerabilitiesPerArtifact) {
this.maxCorrelatedVulnerabilitiesPerArtifact = maxCorrelatedVulnerabilitiesPerArtifact;
return this;
}
public int getMaxCorrelatedVulnerabilitiesPerArtifact() {
return maxCorrelatedVulnerabilitiesPerArtifact;
}
@Override
public LinkedHashMap getProperties() {
final LinkedHashMap configuration = new LinkedHashMap<>();
configuration.put("maxCorrelatedVulnerabilitiesPerArtifact", maxCorrelatedVulnerabilitiesPerArtifact);
return configuration;
}
@Override
public void setProperties(LinkedHashMap properties) {
super.loadIntegerProperty(properties, "maxCorrelatedVulnerabilitiesPerArtifact", this::setMaxCorrelatedVulnerabilitiesPerArtifact);
}
@Override
protected void collectMisconfigurations(List misconfigurations) {
if (maxCorrelatedVulnerabilitiesPerArtifact < -1) {
misconfigurations.add(new ProcessMisconfiguration("maxCorrelatedVulnerabilitiesPerArtifact", "Must be greater or equal to -1"));
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy