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

com.cerner.ccl.analysis.mojo.util.J4CclFtpProductProvider Maven / Gradle / Ivy

There is a newer version: 2.7
Show newest version
package com.cerner.ccl.analysis.mojo.util;

import com.cerner.ccl.analysis.engine.j4ccl.FtpProductProvider;
import com.cerner.ccl.j4ccl.impl.util.AuthHelper;
import com.cerner.ftp.data.FtpProduct;

/**
 * An {@link FtpProductProvider} that leverages utilities provided by the {@code j4ccl-ssh} to construct an
 * {@link FtpProduct}.
 * 
 * @author Joshua Hyde
 * 
 */

public class J4CclFtpProductProvider implements FtpProductProvider {
    /**
     * {@inheritDoc}
     */
    public FtpProduct getProduct() {
        return AuthHelper.fromCurrentSubject();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy