001package co.codewizards.cloudstore.core.repo.local; 002 003import java.util.List; 004 005import co.codewizards.cloudstore.core.dto.RepoFileDto; 006 007public interface LocalRepoMetaData { 008 009 RepoFileDto getRepoFileDto(String path, int depth); 010 011 RepoFileDto getRepoFileDto(long repoFileId, int depth); 012 013 List<RepoFileDto> getChildRepoFileDtos(String path, int depth); 014 015 List<RepoFileDto> getChildRepoFileDtos(long repoFileId, int depth); 016 017}