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

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

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

import org.vertexium.Metadata;
import org.vertexium.Visibility;

public class AddPropertyValueMutation extends PropertyMutation {
    private final Object value;
    private final Metadata metadata;

    public AddPropertyValueMutation(long timestamp, String key, String name, Object value, Metadata metadata, Visibility visibility) {
        super(timestamp, key, name, visibility, visibility);
        this.value = value;
        this.metadata = metadata;
    }

    public Object getValue() {
        return value;
    }

    public Metadata getMetadata() {
        return metadata;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy