com.amazonaws.services.cloudsearchv2.model.transform.DomainStatusStaxUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-cloudsearch Show documentation
Show all versions of aws-java-sdk-cloudsearch Show documentation
The AWS Java SDK for Amazon CloudSearch module holds the client classes that are used for communicating with Amazon CloudSearch Service
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.cloudsearchv2.model.transform;
import javax.xml.stream.events.XMLEvent;
import javax.annotation.Generated;
import com.amazonaws.services.cloudsearchv2.model.*;
import com.amazonaws.transform.Unmarshaller;
import com.amazonaws.transform.StaxUnmarshallerContext;
import com.amazonaws.transform.SimpleTypeStaxUnmarshallers.*;
/**
* DomainStatus StAX Unmarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class DomainStatusStaxUnmarshaller implements Unmarshaller {
public DomainStatus unmarshall(StaxUnmarshallerContext context) throws Exception {
DomainStatus domainStatus = new DomainStatus();
int originalDepth = context.getCurrentDepth();
int targetDepth = originalDepth + 1;
if (context.isStartOfDocument())
targetDepth += 1;
while (true) {
XMLEvent xmlEvent = context.nextEvent();
if (xmlEvent.isEndDocument())
return domainStatus;
if (xmlEvent.isAttribute() || xmlEvent.isStartElement()) {
if (context.testExpression("DomainId", targetDepth)) {
domainStatus.setDomainId(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("DomainName", targetDepth)) {
domainStatus.setDomainName(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("ARN", targetDepth)) {
domainStatus.setARN(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("Created", targetDepth)) {
domainStatus.setCreated(BooleanStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("Deleted", targetDepth)) {
domainStatus.setDeleted(BooleanStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("DocService", targetDepth)) {
domainStatus.setDocService(ServiceEndpointStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("SearchService", targetDepth)) {
domainStatus.setSearchService(ServiceEndpointStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("RequiresIndexDocuments", targetDepth)) {
domainStatus.setRequiresIndexDocuments(BooleanStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("Processing", targetDepth)) {
domainStatus.setProcessing(BooleanStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("SearchInstanceType", targetDepth)) {
domainStatus.setSearchInstanceType(StringStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("SearchPartitionCount", targetDepth)) {
domainStatus.setSearchPartitionCount(IntegerStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("SearchInstanceCount", targetDepth)) {
domainStatus.setSearchInstanceCount(IntegerStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
if (context.testExpression("Limits", targetDepth)) {
domainStatus.setLimits(LimitsStaxUnmarshaller.getInstance().unmarshall(context));
continue;
}
} else if (xmlEvent.isEndElement()) {
if (context.getCurrentDepth() < originalDepth) {
return domainStatus;
}
}
}
}
private static DomainStatusStaxUnmarshaller instance;
public static DomainStatusStaxUnmarshaller getInstance() {
if (instance == null)
instance = new DomainStatusStaxUnmarshaller();
return instance;
}
}