com.microsoft.azure.documentdb.internal.BridgeInternal Maven / Gradle / Ivy
package com.microsoft.azure.documentdb.internal;
/**
* This is meant to be used only internally as a bridge access to classes in
* com.microsoft.azure.documentdb.internal
**/
public class BridgeInternal {
public static boolean isUserProvidedPartitionKeyRangeIdentity(DocumentServiceRequest documentServiceRequest){
return documentServiceRequest.isUserProvidedPartitionKeyRangeIdentity();
}
public static void setUserProvidedPartitionKeyRangeIdentity(DocumentServiceRequest documentServiceRequest, boolean userProvidedPartitionKeyRangeIdentity) {
documentServiceRequest.setUserProvidedPartitionKeyRangeIdentity(userProvidedPartitionKeyRangeIdentity);
}
}