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

com.ngrok.AbstractEdge Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.ngrok;

import java.util.Map;

public class AbstractEdge {
    private final String id;
    private final String metadata;
    private final String forwardsTo;
    private final Map labels;

    public AbstractEdge(String id, String metadata, String forwardsTo, Map labels) {
        this.id = id;
        this.metadata = metadata;
        this.forwardsTo = forwardsTo;
        this.labels = labels;
    }

    public String getId() {
        return id;
    }

    public String getMetadata() {
        return metadata;
    }

    public String getForwardsTo() {
        return forwardsTo;
    }

    public Map getLabels() {
        return labels;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy