public GetEndpointAttributesResult unmarshall(StaxUnmarshallerContext context) throws Exception { GetEndpointAttributesResult getEndpointAttributesResult = new GetEndpointAttributesResult(); 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 getEndpointAttributesResult; if (xmlEvent == XmlPullParser.START_TAG) { if (context.testExpression("Attributes/entry", targetDepth)) { Entry<String, String> entry = AttributesMapEntryUnmarshaller.getInstance().unmarshall(context); getEndpointAttributesResult.getAttributes().put(entry.getKey(), entry.getValue()); continue; } } else if (xmlEvent == XmlPullParser.END_TAG) { if (context.getCurrentDepth() < originalDepth) { return getEndpointAttributesResult; } } } }
public GetPlatformApplicationAttributesResult unmarshall(StaxUnmarshallerContext context) throws Exception { GetPlatformApplicationAttributesResult getPlatformApplicationAttributesResult = new GetPlatformApplicationAttributesResult(); int originalDepth = context.getCurrentDepth(); int targetDepth = originalDepth + 1; if (context.isStartOfDocument()) targetDepth += 2; while (true) { XMLEvent xmlEvent = context.nextEvent(); if (xmlEvent.isEndDocument()) return getPlatformApplicationAttributesResult; if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) { if (context.testExpression("Attributes/entry", targetDepth)) { Entry<String, String> entry = AttributesMapEntryUnmarshaller.getInstance().unmarshall(context); getPlatformApplicationAttributesResult .getAttributes() .put(entry.getKey(), entry.getValue()); continue; } } else if (xmlEvent.isEndElement()) { if (context.getCurrentDepth() < originalDepth) { return getPlatformApplicationAttributesResult; } } } }