
com.azure.cosmos.CosmosAsyncConflictResponse Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.cosmos;
import com.azure.cosmos.implementation.Conflict;
import com.azure.cosmos.implementation.ResourceResponse;
import org.apache.commons.lang3.StringUtils;
public class CosmosAsyncConflictResponse extends CosmosResponse {
private final CosmosAsyncContainer container;
private final CosmosAsyncConflict conflictClient;
CosmosAsyncConflictResponse(ResourceResponse response, CosmosAsyncContainer container) {
super(response);
this.container = container;
String bodyAsString = response.getBodyAsString();
if (StringUtils.isEmpty(bodyAsString)) {
super.setProperties(null);
conflictClient = null;
} else {
CosmosConflictProperties props = new CosmosConflictProperties(bodyAsString);
super.setProperties(props);
conflictClient = new CosmosAsyncConflict(props.getId(), container);
}
}
CosmosAsyncContainer getContainer() {
return container;
}
/**
* Get conflict client
*
* @return the cosmos conflict client
*/
public CosmosAsyncConflict getConflict() {
return conflictClient;
}
/**
* Get conflict properties object representing the resource on the server
*
* @return the conflict properties
*/
public CosmosConflictProperties getProperties() {
return this.getProperties();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy