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