try {
if (customer == null) {
throw new NullAttributeException("usCustomer", "test");
} else {
//System.out.println("country: " + customer.getAddress().getCountry());
return (customer.getAddress().getCountry().equalsIgnoreCase("USA"));
}
} catch (JspException ex) {
throw new JspTagException(ex.toString());
}