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

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

package org.rundeck.storage.impl;

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

import java.util.Set;

/**
 * Implements the String methods of Tree for subclassing
 */
public abstract class StringToPathTree implements Tree {

    @Override
    public boolean hasPath(String path) {
        return hasPath(PathUtil.asPath(path));
    }


    @Override
    public boolean hasResource(String path) {
        return hasResource(PathUtil.asPath(path));
    }

    @Override
    public boolean hasDirectory(String path) {
        return hasDirectory(PathUtil.asPath(path));
    }

    @Override
    public Resource getPath(String path) {
        return getPath(PathUtil.asPath(path));
    }

    @Override
    public Resource getResource(String path) {
        return getResource(PathUtil.asPath(path));
    }


    @Override
    public Set> listDirectoryResources(String path) {
        return listDirectoryResources(PathUtil.asPath(path));
    }


    @Override
    public Set> listDirectory(String path) {
        return listDirectory(PathUtil.asPath(path));
    }


    @Override
    public Set> listDirectorySubdirs(String path) {
        return listDirectorySubdirs(PathUtil.asPath(path));
    }

    @Override
    public boolean deleteResource(String path) {
        return deleteResource(PathUtil.asPath(path));
    }

    @Override
    public Resource createResource(String path, T content) {
        return createResource(PathUtil.asPath(path), content);
    }

    @Override
    public Resource updateResource(String path, T content) {
        return updateResource(PathUtil.asPath(path), content);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy