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

br.com.jhonsapp.file.manager.implementation.RemoteHDFileManager Maven / Gradle / Ivy

Go to download

File Manager is an open source project created by Jhonys Camacho and Jhonathan Camacho to facilitate the file management in local and remote repositories.

The newest version!
package br.com.jhonsapp.file.manager.implementation;

import br.com.jhonsapp.file.manager.contract.AbstractFileManager;
import br.com.jhonsapp.file.manager.file.FileEntity;

/**
 * This class is responsible for manipulating files in a remote directory.
 * 
 * @author Jhonathan Camacho
 * */
public class RemoteHDFileManager extends AbstractFileManager {
	
	/**
	 * Generated serial version id created at 09 July 2017.
	 */
	private static final long serialVersionUID = -8716956356573327887L;

	public RemoteHDFileManager(String repositoryPath) {
		super(repositoryPath);
	}

	@Override
	public boolean insert(FileEntity entity) {
		throw new RuntimeException("This method has not been implemented.");
	}

	@Override
	public boolean remove(String fileName) {
		throw new RuntimeException("This method has not been implemented.");
	}

	@Override
	public FileEntity getFile(String fileName) {
		throw new RuntimeException("This method has not been implemented.");
	}

	@Override
	public boolean hasFile(String fileName) {
		throw new RuntimeException("This method has not been implemented.");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy