All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ksyun.api.sdk.kec.transform.CreateImageResultStaxUnmarshaller Maven / Gradle / Ivy

There is a newer version: 2.1.8
Show newest version
package com.ksyun.api.sdk.kec.transform;

import javax.xml.stream.events.XMLEvent;

import com.ksc.transform.SimpleTypeStaxUnmarshallers.StringStaxUnmarshaller;
import com.ksyun.api.sdk.kec.model.CreateImageResult;
import com.ksc.transform.StaxUnmarshallerContext;
import com.ksc.transform.Unmarshaller;

public class CreateImageResultStaxUnmarshaller implements
             Unmarshaller {

	@Override
	public CreateImageResult unmarshall(StaxUnmarshallerContext context) throws Exception {
		CreateImageResult createImageResult = new CreateImageResult();
		int originalDepth = context.getCurrentDepth();
		int targetDepth = originalDepth + 1;

		if (context.isStartOfDocument())
			targetDepth += 1;

		while (true) {
			XMLEvent xmlEvent = context.nextEvent();
			if (xmlEvent.isEndDocument())
				return createImageResult;

			if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) {
				// no use reservation
				if (context.testExpression("ImageId", targetDepth)) {
					createImageResult.setImageId(StringStaxUnmarshaller
							.getInstance().unmarshall(context));
					continue;
				}

				if (context.testExpression("RequestId", targetDepth)) {
					createImageResult.setRequestId(StringStaxUnmarshaller
							.getInstance().unmarshall(context));
					continue;
				}
			} else if (xmlEvent.isEndElement()) {
				if (context.getCurrentDepth() < originalDepth) {
					return createImageResult;
				}
			}
		}
	}

	private static CreateImageResultStaxUnmarshaller instance;

	public static CreateImageResultStaxUnmarshaller getInstance() {
		if (instance == null)
			instance = new CreateImageResultStaxUnmarshaller();
		return instance;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy