Class JavaMessageServiceConnection
Represents the metadata of a Java Message Service Connection.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class JavaMessageServiceConnection : Connection
Properties
AuthenticationType
Declaration
[JsonProperty(PropertyName = "authenticationType")]
[JsonConverter(typeof(ResponseEnumConverter))]
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 | Connectin 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' |
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' |
PrivateIp
Declaration
[JsonProperty(PropertyName = "privateIp")]
public string PrivateIp { get; set; }
Property Value
Type | Description |
---|---|
string | Deprecated: this field will be removed in future versions. Either specify the private IP in the connectionString or host
field, or make sure the host name is resolvable in the target VCN.
|
SecurityProtocol
Declaration
[JsonProperty(PropertyName = "securityProtocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
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
TechnologyType
Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JavaMessageServiceConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type | Description |
---|---|
JavaMessageServiceConnection.TechnologyTypeEnum? | The Java Message Service technology type. |
Remarks
Required
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. |