public ListDeadLetterSourceQueuesResult unmarshall(StaxUnmarshallerContext context) throws Exception { ListDeadLetterSourceQueuesResult listDeadLetterSourceQueuesResult = new ListDeadLetterSourceQueuesResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 2; while (true) { XMLEvent xmlEvent = context.nextEvent(); if (xmlEvent.isEndDocument()) return listDeadLetterSourceQueuesResult; if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) { if (context.testExpression("QueueUrl", targetDepth)) { listDeadLetterSourceQueuesResult.withQueueUrls( StringStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent.isEndElement()) { if (context.getCurrentDepth() < originalDepth) { return listDeadLetterSourceQueuesResult; } } } }
public ListDeadLetterSourceQueuesResult unmarshall(StaxUnmarshallerContext context) throws Exception { ListDeadLetterSourceQueuesResult listDeadLetterSourceQueuesResult = new ListDeadLetterSourceQueuesResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 2; while (true) { int xmlEvent = context.nextEvent(); if (xmlEvent == XmlPullParser.END_DOCUMENT) return listDeadLetterSourceQueuesResult; if (xmlEvent == XmlPullParser.START_TAG) { if (context.testExpression("QueueUrl", targetDepth)) { listDeadLetterSourceQueuesResult .getQueueUrls() .add(StringStaxUnmarshaller.getInstance().unmarshall(context)); continue; } } else if (xmlEvent == XmlPullParser.END_TAG) { if (context.getCurrentDepth() < originalDepth) { return listDeadLetterSourceQueuesResult; } } } }