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

org.hcjf.cloud.impl.objects.RemoteLeaf Maven / Gradle / Ivy

package org.hcjf.cloud.impl.objects;

/**
 * @author javaito
 */
public final class RemoteLeaf extends DistributedLeaf {

    private Object instance;

    public RemoteLeaf(Object key) {
        super(key);
    }

    @Override
    public Object getInstance() {
        return instance != null ? instance : this;
    }

    public final void setInstance(Object instance) {
        this.instance = instance;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy