Skip to content

Commit 37f3f7f

Browse files
chore(deps): update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.2.0 (#962)
* chore(deps): update dependency org.apache.maven.plugins:maven-checkstyle-plugin to v3.2.0 * add missing docstring Co-authored-by: Shubha Rajan <[email protected]>
1 parent cb6a7d5 commit 37f3f7f

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

jdbc/sqlserver/src/main/java/com/google/cloud/sql/sqlserver/SocketFactory.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@
2323
import java.util.Properties;
2424
import 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+
*/
2632
public class SocketFactory extends javax.net.SocketFactory {
2733

2834
private static final Logger logger = Logger.getLogger(SocketFactory.class.getName());

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
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>

r2dbc/core/src/main/java/com/google/cloud/sql/core/CloudSqlConnectionFactory.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
import java.util.function.Function;
2828
import org.reactivestreams.Publisher;
2929

30+
/**
31+
* * {@link ConnectionFactory} for accessing Cloud SQL instances via R2DBC protocol.
32+
*/
3033
public class CloudSqlConnectionFactory implements ConnectionFactory {
3134

3235
private Function<ConnectionFactoryOptions, ConnectionFactory> connectionFactoryFactory;

0 commit comments

Comments
 (0)