com.sshtools.server.vsession.commands.sftp.SftpFileTransferOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-virtual-session Show documentation
Show all versions of maverick-virtual-session Show documentation
Support for a virtual sessions, custom command execution etc.
The newest version!
package com.sshtools.server.vsession.commands.sftp;
/*-
* #%L
* Virtual Sessions
* %%
* Copyright (C) 2002 - 2024 JADAPTIVE Limited
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
public class SftpFileTransferOptions {
private static final String SFTP_PUT_OPTION_RESUME = "a";
private static final String SFTP_PUT_OPTION_FSYNC = "f";
private static final String SFTP_PUT_OPTION_PERMISSION_CAPS = "P";
private static final String SFTP_PUT_OPTION_PERMISSION = "p";
private static final String SFTP_PUT_OPTION_RECURSE = "r";
private boolean resume;
private boolean fsync;
private boolean permissionCaps;
private boolean permission;
private boolean recurse;
public boolean isResume() {
return resume;
}
public void setResume(boolean resume) {
this.resume = resume;
}
public boolean isFsync() {
return fsync;
}
public void setFsync(boolean fsync) {
this.fsync = fsync;
}
public boolean isPermissionCaps() {
return permissionCaps;
}
public void setPermissionCaps(boolean permissionCaps) {
this.permissionCaps = permissionCaps;
}
public boolean isPermission() {
return permission;
}
public void setPermission(boolean permission) {
this.permission = permission;
}
public boolean isRecurse() {
return recurse;
}
public void setRecurse(boolean recurse) {
this.recurse = recurse;
}
static SftpFileTransferOptions parse(String options) {
String[] parts = options.split("");
SftpFileTransferOptions sftpFileTransferOptions = new SftpFileTransferOptions();
for (String part : parts) {
switch (part) {
case SFTP_PUT_OPTION_RESUME:
sftpFileTransferOptions.setResume(true);
break;
case SFTP_PUT_OPTION_FSYNC:
sftpFileTransferOptions.setFsync(true);
break;
case SFTP_PUT_OPTION_PERMISSION_CAPS:
sftpFileTransferOptions.setPermissionCaps(true);
break;
case SFTP_PUT_OPTION_PERMISSION:
sftpFileTransferOptions.setPermission(true);
break;
case SFTP_PUT_OPTION_RECURSE:
sftpFileTransferOptions.setRecurse(true);
break;
default:
break;
}
}
return sftpFileTransferOptions;
}
}