/** @param noSSLSessionResumption the noSSLSessionResumption to set */ public void setNoSSLSessionResumption(boolean noSSLSessionResumption) { if (this.noSSLSessionResumption != noSSLSessionResumption) { this.noSSLSessionResumption = noSSLSessionResumption; notifyChanged(); resetConnectionFileManager(); } }
/** @param validate */ public void setValidateCertificate(boolean validate) { if (this.validateCertificate != validate) { this.validateCertificate = validate; notifyChanged(); resetConnectionFileManager(); } }
/** @param explicit the explicit to set */ public void setExplicit(boolean explicit) { if (this.explicit != explicit) { if (explicit) { if (IFTPSConstants.FTPS_IMPLICIT_PORT == port) { port = IFTPSConstants.FTP_PORT_DEFAULT; } } else { if (IFTPSConstants.FTP_PORT_DEFAULT == port) { port = IFTPSConstants.FTPS_IMPLICIT_PORT; } } } this.explicit = explicit; notifyChanged(); resetConnectionFileManager(); }
/** @param encoding the encoding to set */ public void setEncoding(String encoding) { this.encoding = encoding; notifyChanged(); resetConnectionFileManager(); }
/** @param timezone the timezone to set */ public void setTimezone(String timezone) { this.timezone = timezone; notifyChanged(); resetConnectionFileManager(); }
/** @param passiveMode the passiveMode to set */ public void setPassiveMode(boolean passiveMode) { this.passiveMode = passiveMode; notifyChanged(); resetConnectionFileManager(); }
/** @param transferType the transferType to set */ public void setTransferType(String transferType) { this.transferType = transferType; notifyChanged(); resetConnectionFileManager(); }
/* (non-Javadoc) * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setPassword(char[]) */ public void setPassword(char[] password) { this.password = password; notifyChanged(); resetConnectionFileManager(); }
/* (non-Javadoc) * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setLogin(java.lang.String) */ public void setLogin(String login) { this.login = login; notifyChanged(); resetConnectionFileManager(); }
/* (non-Javadoc) * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setPath(org.eclipse.core.runtime.IPath) */ public void setPath(IPath path) { this.path = path; notifyChanged(); resetConnectionFileManager(); }
/* (non-Javadoc) * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setPort(int) */ public void setPort(int port) { this.port = port; notifyChanged(); resetConnectionFileManager(); }
/* (non-Javadoc) * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setHost(java.lang.String) */ public void setHost(String host) { this.host = host; notifyChanged(); resetConnectionFileManager(); }