@Override
public void startElement(String url, String name, String qName, Attributes attrs) {
if (!equalsOrSuffix(qName, "PoolRecordData"))
return;
Map<String, String> attributes = cleanseAttributes(attrs);
TrafficControllerPoolRecord record = TrafficControllerPoolRecord.create(
attributes.get("recordType"),
attributes.get("pointsTo"));
records.add(TrafficControllerPoolRecordDetail.builder()
.id(attributes.get("poolRecordID"))
.poolId(attributes.get("poolId"))