You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/io/r2dbc/postgresql/extension/CodecRegistrar.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@
25
25
26
26
/**
27
27
* Registrar interface that is used to register {@link Codec}s as extension to built-in codecs.
28
-
* <p>Implementations may use {@link PostgresqlConnection} to query Postgres information schema to discover type details such as extension type OIDs.
28
+
* <p>Implementations may use {@link PostgresqlConnection} to query Postgres information schema to discover type details such as extension type OIDs.</p>
29
29
*
30
-
* <h3>Constructor Requirements</h3>
30
+
* <strong>Constructor Requirements</strong>
31
31
* <p>Extension implementations must have a <em>default constructor</em> if registered via the {@code ServiceLoader}. When registered through
32
32
* {@link io.r2dbc.postgresql.PostgresqlConnectionConfiguration} the default constructor is not required to be {@code public}.
33
33
* When registered via the {@code ServiceLoader} the default constructor must be {@code public}.
Copy file name to clipboardExpand all lines: src/main/java/io/r2dbc/postgresql/extension/Extension.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,13 @@
27
27
* what is available in the classpath.
28
28
* <p>
29
29
* Specifically, a custom extension can be registered by supplying its fully qualified class name in a file named {@code io.r2dbc.postgresql.extension.Extension} within the
30
-
* {@code /META-INF/services} directory in its enclosing JAR file.
30
+
* {@code /META-INF/services} directory in its enclosing JAR file.</p>
* Auto-detection is enabled by default. To disable it, simply set the {@link io.r2dbc.postgresql.PostgresqlConnectionConfiguration.Builder#autodetectExtensions(boolean)} parameter to
* <p>Auto-detection is enabled by default. To disable it, simply set the {@link io.r2dbc.postgresql.PostgresqlConnectionConfiguration.Builder#autodetectExtensions(boolean)} parameter to
34
+
* {@code false}.</p>
35
35
*
36
-
* <h3>Constructor Requirements</h3>
36
+
* <strong>Constructor Requirements</strong>
37
37
* <p>Extension implementations must have a <em>default constructor</em> if registered via the {@code ServiceLoader}. When registered through
38
38
* {@link io.r2dbc.postgresql.PostgresqlConnectionConfiguration} the default constructor is not required to be {@code public}.
39
39
* When registered via the {@code ServiceLoader} the default constructor must be {@code public}.
0 commit comments