com.metaeffekt.artifact.analysis.bom.spdx.relationship.RelationshipGraphNode Maven / Gradle / Ivy
package com.metaeffekt.artifact.analysis.bom.spdx.relationship;
import lombok.Getter;
import lombok.Setter;
/**
* This class serves as a node of the RelationshipGraph class and holds information on either inventory
* artifacts or assets.
*/
@Getter
@Setter
public class RelationshipGraphNode {
private String id;
public RelationshipGraphNode(String id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy