package usda.weru.remoteDataAccess;

import java.nio.file.Path;

/**
 *
 * @author Mark Haas <mark.haas@ars.usda.gov>
 */
public abstract class RdaInterface {
    
    protected Path destinationPath;
    protected String interfaceName;
    
    public RdaInterface () {
        destinationPath = null;
    }
    
    public void setInterfaceName (String interfaceName) {
        this.interfaceName = interfaceName;
    }
    
    public void interfaceSetDestinationPath (Path destPath) {
        destinationPath = destPath;
    }
    
    public Path getDestinationPath () {
        return destinationPath;
    }
 }
