All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.metaeffekt.artifact.analysis.bom.spdx.relationship.RelationshipGraphNode Maven / Gradle / Ivy

There is a newer version: 0.134.0
Show newest version
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