Skip to content

Signed-off-by: Ashok Tiyadi [email protected] - Update OracleR2db… #124

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion src/main/java/oracle/r2dbc/OracleR2dbcOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,19 @@ private OracleR2dbcOptions() {}
* {@link OracleConnection#CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_TYPES}
*/
public static final Option<CharSequence> NET_ENCRYPTION_TYPES;

/**
* Configures the Oracle JDBC Connection used by Oracle R2DBC as specified by:
* {@link OracleConnection#CONNECTION_PROPERTY_THIN_NET_AUTHENTICATION_KRB5_CC_NAME}
*/
public static final Option<CharSequence> AUTHENTICATION_KRB5_CC_NAME;

/**
* Configures the Oracle JDBC Connection used by Oracle R2DBC as specified by:
* {@link OracleConnection#CONNECTION_PROPERTY_THIN_NET_AUTHENTICATION_KRB5_MUTUAL}
*/
public static final Option<CharSequence> AUTHENTICATION_KRB5_MUTUAL;



/** The unmodifiable set of all extended options */
Expand Down Expand Up @@ -474,7 +487,11 @@ private OracleR2dbcOptions() {}
NET_ENCRYPTION_LEVEL = Option.valueOf(
OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_LEVEL),
NET_ENCRYPTION_TYPES = Option.valueOf(
OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_TYPES)
OracleConnection.CONNECTION_PROPERTY_THIN_NET_ENCRYPTION_TYPES),
AUTHENTICATION_KRB5_CC_NAME = Option.valueOf(
OracleConnection.CONNECTION_PROPERTY_THIN_NET_AUTHENTICATION_KRB5_CC_NAME),
AUTHENTICATION_KRB5_MUTUAL = Option.valueOf(
OracleConnection.CONNECTION_PROPERTY_THIN_NET_AUTHENTICATION_KRB5_MUTUAL)
);

/**
Expand Down