rename internal upload method to doUpload
This commit is contained in:
parent
f2d00b7f83
commit
0f0f6bfa09
1 changed files with 10 additions and 10 deletions
|
@ -207,7 +207,7 @@ public class SFTPFileService implements FileService {
|
|||
Set<PosixFilePermission> filePermissions,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
performWithContext(ctx -> {
|
||||
upload(ctx, Files.newByteChannel(source), ctx.fileSystem.getPath(target),
|
||||
doUpload(ctx, Files.newByteChannel(source), ctx.fileSystem.getPath(target),
|
||||
dirPermissions, filePermissions, copyOptions);
|
||||
return null;
|
||||
});
|
||||
|
@ -227,7 +227,7 @@ public class SFTPFileService implements FileService {
|
|||
Set<PosixFilePermission> filePermissions,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
performWithContext(ctx -> {
|
||||
upload(ctx, Files.newByteChannel(source), target, dirPermissions, filePermissions, copyOptions);
|
||||
doUpload(ctx, Files.newByteChannel(source), target, dirPermissions, filePermissions, copyOptions);
|
||||
return null;
|
||||
});
|
||||
}
|
||||
|
@ -337,7 +337,7 @@ public class SFTPFileService implements FileService {
|
|||
Set<PosixFilePermission> filePermissions,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
performWithContext(ctx -> {
|
||||
upload(ctx, Channels.newChannel(source), target,
|
||||
doUpload(ctx, Channels.newChannel(source), target,
|
||||
dirPermissions, filePermissions, copyOptions);
|
||||
return null;
|
||||
});
|
||||
|
@ -350,18 +350,18 @@ public class SFTPFileService implements FileService {
|
|||
Set<PosixFilePermission> filePermissions,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
performWithContext(ctx -> {
|
||||
upload(ctx, Channels.newChannel(source), ctx.fileSystem.getPath(target),
|
||||
doUpload(ctx, Channels.newChannel(source), ctx.fileSystem.getPath(target),
|
||||
dirPermissions, filePermissions, copyOptions);
|
||||
return null;
|
||||
});
|
||||
}
|
||||
|
||||
private void upload(SFTPContext ctx,
|
||||
ReadableByteChannel source,
|
||||
Path target,
|
||||
Set<PosixFilePermission> dirPerms,
|
||||
Set<PosixFilePermission> filePerms,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
private void doUpload(SFTPContext ctx,
|
||||
ReadableByteChannel source,
|
||||
Path target,
|
||||
Set<PosixFilePermission> dirPerms,
|
||||
Set<PosixFilePermission> filePerms,
|
||||
CopyOption... copyOptions) throws IOException {
|
||||
prepareForWrite(target, dirPerms, filePerms);
|
||||
transfer(source, ctx.provider.newByteChannel(target, prepareWriteOptions(copyOptions)));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue