|
1 | 1 | package org.embulk.output.sftp; |
2 | 2 |
|
3 | 3 | import com.google.common.base.Optional; |
4 | | -import com.google.common.base.Throwables; |
5 | | -import org.apache.commons.logging.Log; |
6 | | -import org.apache.commons.vfs2.FileObject; |
7 | | -import org.apache.commons.vfs2.FileSystemException; |
8 | | -import org.apache.commons.vfs2.FileSystemManager; |
9 | | -import org.apache.commons.vfs2.FileSystemOptions; |
10 | | -import org.apache.commons.vfs2.VFS; |
11 | | -import org.apache.commons.vfs2.impl.StandardFileSystemManager; |
12 | | -import org.apache.commons.vfs2.provider.sftp.IdentityInfo; |
13 | | -import org.apache.commons.vfs2.provider.sftp.SftpFileSystemConfigBuilder; |
14 | 4 | import org.embulk.config.Config; |
15 | 5 | import org.embulk.config.ConfigDefault; |
16 | 6 | import org.embulk.config.ConfigDiff; |
17 | 7 | import org.embulk.config.ConfigSource; |
18 | 8 | import org.embulk.config.Task; |
19 | 9 | import org.embulk.config.TaskReport; |
20 | 10 | import org.embulk.config.TaskSource; |
21 | | -import org.embulk.spi.Buffer; |
22 | 11 | import org.embulk.spi.Exec; |
23 | 12 | import org.embulk.spi.FileOutputPlugin; |
24 | 13 | import org.embulk.spi.TransactionalFileOutput; |
25 | 14 | import org.slf4j.Logger; |
26 | 15 |
|
27 | | -import java.io.ByteArrayOutputStream; |
28 | | -import java.io.File; |
29 | | -import java.io.IOException; |
30 | | -import java.io.OutputStream; |
31 | | -import java.net.URI; |
32 | | -import java.net.URISyntaxException; |
33 | 16 | import java.util.List; |
34 | 17 |
|
35 | 18 | public class SftpFileOutputPlugin |
|
0 commit comments