Example usage for org.springframework.integration.file.remote ClientCallback interface-usage

List of usage examples for org.springframework.integration.file.remote ClientCallback interface-usage

Introduction

In this page you can find the example usage for org.springframework.integration.file.remote ClientCallback interface-usage.

Usage

From source file com.qpark.eip.core.sftp.MkdirClientCallback.java

/**
 * The {@link ClientCallback} to use when executing the mkdir command.
 *
 * @author bhausen
 */
public class MkdirClientCallback implements ClientCallback<ChannelSftp, Void> {

From source file com.qpark.eip.core.sftp.RemoveClientCallback.java

/**
 * The {@link ClientCallback} to use when executing the rm/rmdir command.
 *
 * @author bhausen
 */
public class RemoveClientCallback implements ClientCallback<ChannelSftp, Void> {

From source file com.qpark.eip.core.sftp.LsClientCallback.java

/**
 * The {@link ClientCallback} to use when executing the ls command.
 *
 * @author bhausen
 */
public class LsClientCallback implements ClientCallback<ChannelSftp, Vector<LsEntry>> {