} else if (name.equals("Grantee")) {
String type = XmlResponsesSaxParser.findAttributeValue( "xsi:type", attrs );
if ("AmazonCustomerByEmail".equals(type)) {
currentGrantee = new EmailAddressGrantee(null);
} else if ("CanonicalUser".equals(type)) {
currentGrantee = new CanonicalGrantee(null);
} else if ("Group".equals(type)) {
/*
* Nothing to do for GroupGrantees here since we
* can't construct an empty enum value early.
*/