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

io.github.thunderz99.cosmos.dto.UniqueKey Maven / Gradle / Ivy

There is a newer version: 0.7.11
Show newest version
package io.github.thunderz99.cosmos.dto;

import java.util.List;

/**
 * DTO class representing a uniqueKey in json path. e.g. ["/address/city", "/_uniqueKey1"].
 */
public class UniqueKey extends RecordData {
    public List paths;

    public UniqueKey(){
    }

    public UniqueKey(List paths){
        this.paths = paths;
    }

    /**
     * Getter for paths
     * @return paths
     */
    public List getPaths() {
        return paths;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy