Help for this page

Select Code to Download


  1. or download this
    public String getCustomerSSN()
    {
        // return the customer's SSN<
        return customerSSN;
    }
    
  2. or download this
    public String getCustomerID
    {
        // return the customer's SSN
        return customerID;
    }
    
  3. or download this
    if (ftpResponse.charAt(0) == '2')
        // ftp result in 200s = success
    
  4. or download this
    public boolean wasSuccessful(String ftpResponse)
    {
        return ftpResponse.charAt(0) == '2';
    }
    
  5. or download this
    if (wasSuccessful(ftpResonse))