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

org.vertexium.inmemory.mutations.EdgeSetupMutation Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium.inmemory.mutations;

import org.vertexium.Visibility;

public class EdgeSetupMutation extends Mutation {
    private final String outVertexId;
    private final String inVertexId;

    public EdgeSetupMutation(long timestamp, String outVertexId, String inVertexId) {
        super(timestamp, new Visibility(""));
        this.outVertexId = outVertexId;
        this.inVertexId = inVertexId;
    }

    public String getOutVertexId() {
        return outVertexId;
    }

    public String getInVertexId() {
        return inVertexId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy