Example #1
0
 /** @param noSSLSessionResumption the noSSLSessionResumption to set */
 public void setNoSSLSessionResumption(boolean noSSLSessionResumption) {
   if (this.noSSLSessionResumption != noSSLSessionResumption) {
     this.noSSLSessionResumption = noSSLSessionResumption;
     notifyChanged();
     resetConnectionFileManager();
   }
 }
Example #2
0
 /** @param validate */
 public void setValidateCertificate(boolean validate) {
   if (this.validateCertificate != validate) {
     this.validateCertificate = validate;
     notifyChanged();
     resetConnectionFileManager();
   }
 }
Example #3
0
 /** @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();
 }
Example #4
0
 /** @param encoding the encoding to set */
 public void setEncoding(String encoding) {
   this.encoding = encoding;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #5
0
 /** @param timezone the timezone to set */
 public void setTimezone(String timezone) {
   this.timezone = timezone;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #6
0
 /** @param passiveMode the passiveMode to set */
 public void setPassiveMode(boolean passiveMode) {
   this.passiveMode = passiveMode;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #7
0
 /** @param transferType the transferType to set */
 public void setTransferType(String transferType) {
   this.transferType = transferType;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #8
0
 /* (non-Javadoc)
  * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setPassword(char[])
  */
 public void setPassword(char[] password) {
   this.password = password;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #9
0
 /* (non-Javadoc)
  * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setLogin(java.lang.String)
  */
 public void setLogin(String login) {
   this.login = login;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #10
0
 /* (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();
 }
Example #11
0
 /* (non-Javadoc)
  * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setPort(int)
  */
 public void setPort(int port) {
   this.port = port;
   notifyChanged();
   resetConnectionFileManager();
 }
Example #12
0
 /* (non-Javadoc)
  * @see com.aptana.ide.core.ftp.IBaseRemoteConnectionPoint#setHost(java.lang.String)
  */
 public void setHost(String host) {
   this.host = host;
   notifyChanged();
   resetConnectionFileManager();
 }