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

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

package br.com.jhonsapp.file.manager.implementation;

import java.io.File;

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

/**
 * This class is responsible for manipulating files in a remote directory.
 * 
 * @author Jhonathan Camacho
 * */
public class RemoteHDFileManager extends AbstractFileManager {
	private static final long serialVersionUID = -8716956356573327887L;

	public RemoteHDFileManager() {
		super(PropertiesDefault.remoteKey);
	}

	@Override
	public boolean insert(String fileName, String format, byte[] file) {
		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 byte[] getByte(String fileName) {
		throw new RuntimeException("This method has not been implemented.");
	}

	@Override
	public File 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