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

com.aerospike.mapper.tools.configuration.ReferenceConfig Maven / Gradle / Ivy

package com.aerospike.mapper.tools.configuration;

import com.aerospike.mapper.annotations.AerospikeReference.ReferenceType;

public class ReferenceConfig {
    private ReferenceType type;
    private Boolean lazy;
    private Boolean batchLoad;

    public ReferenceConfig() {}
    public ReferenceConfig(ReferenceType type, boolean lazy) {
        this.type = type;
        this.lazy = lazy;
    }
    
    public ReferenceType getType() {
        return type;
    }

    public Boolean getLazy() {
        return lazy;
    }

    public Boolean getBatchLoad() {
        return batchLoad;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy