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

org.rundeck.storage.impl.BaseDelegateTree Maven / Gradle / Ivy

package org.rundeck.storage.impl;

import org.rundeck.storage.api.ContentMeta;
import org.rundeck.storage.api.Tree;

/**
 * Abstract base for a Tree with a delegate
 */
public abstract class BaseDelegateTree extends StringToPathTree implements Tree {
    private Tree delegate;

    public BaseDelegateTree() {

    }

    public BaseDelegateTree(Tree delegate) {
        this.setDelegate(delegate);
    }

    public Tree getDelegate() {
        return delegate;
    }

    public void setDelegate(Tree delegate) {
        this.delegate = delegate;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy