de.idos.updates.repository.FtpRepository.java Source code

Java tutorial

Introduction

Here is the source code for de.idos.updates.repository.FtpRepository.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package de.idos.updates.repository;

import de.idos.updates.install.FtpFileInstaller;
import de.idos.updates.install.InstallationStrategy;
import de.idos.updates.lookup.FtpLookup;
import de.idos.updates.lookup.LookupStrategy;
import de.idos.updates.store.Installation;
import java.net.InetAddress;
import java.net.UnknownHostException;
import org.apache.commons.net.ftp.FTPFile;

/**
 *
 * @author rusakovich
 */
public class FtpRepository extends AbstractRepository<FTPFile> {

    private static final String DEFAULT_LOGIN = "anonymous";
    private static final String DEFAULT_WORKING_DIR = "/availableVersions";

    private String login = DEFAULT_LOGIN;
    private String workingDir = DEFAULT_WORKING_DIR;

    private InetAddress inetAddress;

    public FtpRepository(String address) {
        try {
            this.inetAddress = InetAddress.getByName(address);
        } catch (UnknownHostException ex) {
            throw new IllegalArgumentException("Please specify a valid inet address for your FTP repository", ex);
        }
    }

    @Override
    protected InstallationStrategy<FTPFile> createInstallationStrategy(Installation installation) {
        return new FtpFileInstaller(getReport(), inetAddress, installation, login, workingDir);
    }

    @Override
    protected LookupStrategy createLookup() {
        return new FtpLookup(inetAddress, login, workingDir);
    }

    public void setLogin(String login) {
        this.login = login;
    }

    public void setWorkingDir(String workingDir) {
        this.workingDir = workingDir;
    }

}