Class CreateJavaMessageServiceConnectionDetails
The information about a new Java Message Service Connection.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateJavaMessageServiceConnectionDetails : CreateConnectionDetails
Properties
AuthenticationType
Declaration
[JsonProperty(PropertyName = "authenticationType")]
[JsonConverter(typeof(StringEnumConverter))]
public JavaMessageServiceConnection.AuthenticationTypeEnum? AuthenticationType { get; set; }
Property Value
| Type | Description |
|---|---|
| JavaMessageServiceConnection.AuthenticationTypeEnum? | Authentication type for Java Message Service. If not provided, default is NONE. Optional until 2024-06-27, in the release after it will be made required. |
ConnectionFactory
Declaration
[JsonProperty(PropertyName = "connectionFactory")]
public string ConnectionFactory { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The of Java class implementing javax.jms.ConnectionFactory interface supplied by the Java Message Service provider. e.g.: 'com.stc.jmsjca.core.JConnectionFactoryXA' |
ConnectionUrl
Declaration
[JsonProperty(PropertyName = "connectionUrl")]
public string ConnectionUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Connection URL of the Java Message Service, specifying the protocol, host, and port. e.g.: 'mq://myjms.host.domain:7676' |
JndiConnectionFactory
Declaration
[JsonProperty(PropertyName = "jndiConnectionFactory")]
public string JndiConnectionFactory { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The Connection Factory can be looked up using this name. e.g.: 'ConnectionFactory' |
JndiInitialContextFactory
Declaration
[JsonProperty(PropertyName = "jndiInitialContextFactory")]
public string JndiInitialContextFactory { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The implementation of javax.naming.spi.InitialContextFactory interface that the client uses to obtain initial naming context. e.g.: 'org.apache.activemq.jndi.ActiveMQInitialContextFactory' |
JndiProviderUrl
Declaration
[JsonProperty(PropertyName = "jndiProviderUrl")]
public string JndiProviderUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The URL that Java Message Service will use to contact the JNDI provider. e.g.: 'tcp://myjms.host.domain:61616?jms.prefetchPolicy.all=1000' |
JndiSecurityCredentials
Declaration
[JsonProperty(PropertyName = "jndiSecurityCredentials")]
public string JndiSecurityCredentials { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The password associated to the principal. Deprecated: This field is deprecated and replaced by "jndiSecurityCredentialsSecretId". This field will be removed after February 15 2026. |
JndiSecurityCredentialsSecretId
Declaration
[JsonProperty(PropertyName = "jndiSecurityCredentialsSecretId")]
public string JndiSecurityCredentialsSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the security credentials are stored associated to the principal. Note: When provided, 'jndiSecurityCredentials' field must not be provided. |
JndiSecurityPrincipal
Declaration
[JsonProperty(PropertyName = "jndiSecurityPrincipal")]
public string JndiSecurityPrincipal { get; set; }
Property Value
| Type | Description |
|---|---|
| string | Specifies the identity of the principal (user) to be authenticated. e.g.: 'admin2' |
KeyStore
Declaration
[JsonProperty(PropertyName = "keyStore")]
public string KeyStore { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The base64 encoded content of the KeyStore file. Deprecated: This field is deprecated and replaced by "keyStoreSecretId". This field will be removed after February 15 2026. |
KeyStorePassword
Declaration
[JsonProperty(PropertyName = "keyStorePassword")]
public string KeyStorePassword { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The KeyStore password. Deprecated: This field is deprecated and replaced by "keyStorePasswordSecretId". This field will be removed after February 15 2026. |
KeyStorePasswordSecretId
Declaration
[JsonProperty(PropertyName = "keyStorePasswordSecretId")]
public string KeyStorePasswordSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the KeyStore password is stored. Note: When provided, 'keyStorePassword' field must not be provided. |
KeyStoreSecretId
Declaration
[JsonProperty(PropertyName = "keyStoreSecretId")]
public string KeyStoreSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the content of the KeyStore file is stored. Note: When provided, 'keyStore' field must not be provided. |
Password
Declaration
[JsonProperty(PropertyName = "password")]
public string Password { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The password Oracle GoldenGate uses to connect the associated Java Message Service. Deprecated: This field is deprecated and replaced by "passwordSecretId". This field will be removed after February 15 2026. |
PasswordSecretId
Declaration
[JsonProperty(PropertyName = "passwordSecretId")]
public string PasswordSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the password is stored, that Oracle GoldenGate uses to connect the associated Java Message Service. Note: When provided, 'password' field must not be provided. |
SecurityProtocol
Declaration
[JsonProperty(PropertyName = "securityProtocol")]
[JsonConverter(typeof(StringEnumConverter))]
public JavaMessageServiceConnection.SecurityProtocolEnum? SecurityProtocol { get; set; }
Property Value
| Type | Description |
|---|---|
| JavaMessageServiceConnection.SecurityProtocolEnum? | Security protocol for Java Message Service. If not provided, default is PLAIN. Optional until 2024-06-27, in the release after it will be made required. |
ShouldUseJndi
Declaration
[Required(ErrorMessage = "ShouldUseJndi is required.")]
[JsonProperty(PropertyName = "shouldUseJndi")]
public bool? ShouldUseJndi { get; set; }
Property Value
| Type | Description |
|---|---|
| bool? | If set to true, Java Naming and Directory Interface (JNDI) properties should be provided. |
Remarks
Required
SslKeyPassword
Declaration
[JsonProperty(PropertyName = "sslKeyPassword")]
public string SslKeyPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The password for the cert inside of the KeyStore. In case it differs from the KeyStore password, it should be provided. Deprecated: This field is deprecated and replaced by "sslKeyPasswordSecretId". This field will be removed after February 15 2026. |
SslKeyPasswordSecretId
Declaration
[JsonProperty(PropertyName = "sslKeyPasswordSecretId")]
public string SslKeyPasswordSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the password is stored for the cert inside of the Keystore. In case it differs from the KeyStore password, it should be provided. Note: When provided, 'sslKeyPassword' field must not be provided. |
TechnologyType
Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public JavaMessageServiceConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
| Type | Description |
|---|---|
| JavaMessageServiceConnection.TechnologyTypeEnum? | The Java Message Service technology type. |
Remarks
Required
TrustStore
Declaration
[JsonProperty(PropertyName = "trustStore")]
public string TrustStore { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The base64 encoded content of the TrustStore file. Deprecated: This field is deprecated and replaced by "trustStoreSecretId". This field will be removed after February 15 2026. |
TrustStorePassword
Declaration
[JsonProperty(PropertyName = "trustStorePassword")]
public string TrustStorePassword { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The TrustStore password. Deprecated: This field is deprecated and replaced by "trustStorePasswordSecretId". This field will be removed after February 15 2026. |
TrustStorePasswordSecretId
Declaration
[JsonProperty(PropertyName = "trustStorePasswordSecretId")]
public string TrustStorePasswordSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the TrustStore password is stored. Note: When provided, 'trustStorePassword' field must not be provided. |
TrustStoreSecretId
Declaration
[JsonProperty(PropertyName = "trustStoreSecretId")]
public string TrustStoreSecretId { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The OCID of the Secret where the content of the TrustStore file is stored. Note: When provided, 'trustStore' field must not be provided. |
Username
Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The username Oracle GoldenGate uses to connect to the Java Message Service. This username must already exist and be available by the Java Message Service to be connected to. |