File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
jdbc/sqlserver/src/main/java/com/google/cloud/sql/sqlserver
r2dbc/core/src/main/java/com/google/cloud/sql/core Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 2323import java .util .Properties ;
2424import java .util .logging .Logger ;
2525
26+ /**
27+ * A Microsoft SQL Server {@link SocketFactory} that establishes a secure connection to a
28+ * Cloud SQL instance using ephemeral certificates.
29+ *
30+ * <p>The heavy lifting is done by the singleton {@link CoreSocketFactory} class.
31+ */
2632public class SocketFactory extends javax .net .SocketFactory {
2733
2834 private static final Logger logger = Logger .getLogger (SocketFactory .class .getName ());
Original file line number Diff line number Diff line change 232232 <plugin >
233233 <groupId >org.apache.maven.plugins</groupId >
234234 <artifactId >maven-checkstyle-plugin</artifactId >
235- <version >3.1.2 </version >
235+ <version >3.2.0 </version >
236236 <configuration >
237237 <configLocation >google_checks.xml</configLocation >
238238 <logViolationsToConsole >true</logViolationsToConsole >
Original file line number Diff line number Diff line change 2727import java .util .function .Function ;
2828import org .reactivestreams .Publisher ;
2929
30+ /**
31+ * * {@link ConnectionFactory} for accessing Cloud SQL instances via R2DBC protocol.
32+ */
3033public class CloudSqlConnectionFactory implements ConnectionFactory {
3134
3235 private Function <ConnectionFactoryOptions , ConnectionFactory > connectionFactoryFactory ;
You can’t perform that action at this time.
0 commit comments