ch.cyberduck.core.Protocol.getDefaultPath()方法的使用及代码示例

x33g5p2x  于2022-01-26 转载在 其他  
字(1.3k)|赞(0)|评价(0)|浏览(124)

本文整理了Java中ch.cyberduck.core.Protocol.getDefaultPath()方法的一些代码示例,展示了Protocol.getDefaultPath()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Protocol.getDefaultPath()方法的具体详情如下:
包路径:ch.cyberduck.core.Protocol
类名称:Protocol
方法名:getDefaultPath

Protocol.getDefaultPath介绍

暂无

代码示例

代码示例来源:origin: iterate-ch/cyberduck

/**
 * @param protocol    Scheme
 * @param hostname    The hostname of the server
 * @param port        Port number
 * @param credentials Login credentials
 */
public Host(final Protocol protocol, final String hostname, final int port, final Credentials credentials) {
  this(protocol, hostname, port, protocol.getDefaultPath(), credentials);
}

代码示例来源:origin: iterate-ch/cyberduck

/**
 * @param protocol The protocol to use, must be either Session.FTP or Session.SFTP
 * @param hostname The hostname of the server
 * @param port     The port number to connect to
 */
public Host(final Protocol protocol, final String hostname, final int port) {
  this(protocol, hostname, port, protocol.getDefaultPath());
}

代码示例来源:origin: iterate-ch/cyberduck

@Override
public String getDefaultPath() {
  final String v = this.value("Default Path");
  if(StringUtils.isBlank(v)) {
    return parent.getDefaultPath();
  }
  return v;
}

代码示例来源:origin: iterate-ch/cyberduck

if(Objects.equals(bookmark.getDefaultPath(), bookmark.getProtocol().getDefaultPath()) ||
  !selected.isPathConfigurable()) {
  bookmark.setDefaultPath(selected.getDefaultPath());

相关文章