re-cosmos.4.63.1.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-cosmos Show documentation
Show all versions of azure-cosmos Show documentation
This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
module com.azure.cosmos {
requires transitive com.azure.core;
requires com.fasterxml.jackson.datatype.jsr310;
requires io.netty.transport;
requires io.netty.handler;
requires io.netty.common;
requires io.netty.buffer;
requires io.netty.codec;
requires io.netty.resolver;
requires io.netty.codec.http;
requires io.netty.codec.http2;
requires io.netty.transport.classes.epoll;
requires io.netty.handler.proxy;
requires reactor.netty.core;
requires reactor.netty.http;
requires com.codahale.metrics;
requires java.management;
requires jdk.management;
requires micrometer.core;
// This is only required by guava shaded libraries
requires java.logging;
requires HdrHistogram;
// public API surface area
exports com.azure.cosmos;
exports com.azure.cosmos.models;
exports com.azure.cosmos.util;
// export packages for multiple different modules
exports com.azure.cosmos.implementation to com.azure.cosmos.encryption, com.azure.cosmos.test, com.azure.cosmos.kafka.connect;
exports com.azure.cosmos.implementation.caches to com.azure.cosmos.encryption, com.azure.cosmos.test;
exports com.azure.cosmos.implementation.feedranges to com.azure.cosmos.encryption, com.azure.cosmos.test;
exports com.azure.cosmos.implementation.apachecommons.lang to com.azure.cosmos.encryption, com.azure.cosmos.test, com.azure.cosmos.kafka.connect;
exports com.azure.cosmos.implementation.guava25.base to com.azure.cosmos.encryption, com.azure.cosmos.test, com.azure.cosmos.kafka.connect;
exports com.azure.cosmos.implementation.guava25.collect to com.azure.cosmos.encryption, com.azure.cosmos.test, com.azure.cosmos.kafka.connect;
exports com.azure.cosmos.implementation.guava27 to com.azure.cosmos.encryption, com.azure.cosmos.test, com.azure.cosmos.kafka.connect;
exports com.azure.cosmos.implementation.directconnectivity to com.azure.cosmos.encryption, com.azure.cosmos.test;
opens com.azure.cosmos.implementation to com.fasterxml.jackson.databind, java.logging, com.fasterxml.jackson.module.afterburner;
// exporting implementation packages specifically for cosmos encryption
exports com.azure.cosmos.implementation.batch to com.azure.cosmos.encryption;
exports com.azure.cosmos.implementation.patch to com.azure.cosmos.encryption;
exports com.azure.cosmos.implementation.query to com.azure.cosmos.encryption;
exports com.azure.cosmos.implementation.apachecommons.lang.tuple to com.azure.cosmos.encryption, com.azure.cosmos.kafka.connect;
// exporting some packages specifically for Jackson
opens com.azure.cosmos.implementation.caches to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.changefeed to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.changefeed.common to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.changefeed.pkversion to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.changefeed.epkversion to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.feedranges to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.changefeed.exceptions to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.directconnectivity to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.directconnectivity.rntbd to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.http to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.query to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.query.aggregation to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.query.metrics to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.query.orderbyquery to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.routing to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.clienttelemetry to com.fasterxml.jackson.databind;
opens com.azure.cosmos.util to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.throughputControl to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.throughputControl.controller.group.global to com.fasterxml.jackson.databind;
opens com.azure.cosmos.implementation.circuitBreaker to com.fasterxml.jackson.databind;
// exporting packages specifically for cosmos test
exports com.azure.cosmos.implementation.faultinjection to com.azure.cosmos.test;
exports com.azure.cosmos.implementation.directconnectivity.rntbd to com.azure.cosmos.test;
exports com.azure.cosmos.implementation.routing to com.azure.cosmos.test;
opens com.azure.cosmos to com.azure.cosmos.test, com.azure.spring.data.cosmos, com.fasterxml.jackson.databind, com.fasterxml.jackson.module.afterburner, java.logging;
opens com.azure.cosmos.models to com.azure.cosmos.test, com.azure.spring.data.cosmos, com.fasterxml.jackson.databind, com.fasterxml.jackson.module.afterburner, java.logging;
uses com.azure.cosmos.implementation.guava25.base.PatternCompiler;
uses com.azure.core.util.tracing.Tracer;
}