SSLConfiguration

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string
enabled boolean Whether SSL is enabled
listenPort integer SSL listen port
identityAndTrustLocations string Where identity and trust keystores are stored
serverPrivateKeyAlias string
serverPrivateKeyPassPhrase string
twoWaySSLEnabled boolean
clientCertificateEnforced boolean
hostnameVerificationIgnored boolean
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-sslconfiguration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SSLConfiguration",
  "title": "SSLConfiguration",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether SSL is enabled"
    },
    "listenPort": {
      "type": "integer",
      "description": "SSL listen port"
    },
    "identityAndTrustLocations": {
      "type": "string",
      "description": "Where identity and trust keystores are stored"
    },
    "serverPrivateKeyAlias": {
      "type": "string"
    },
    "serverPrivateKeyPassPhrase": {
      "type": "string",
      "format": "password"
    },
    "twoWaySSLEnabled": {
      "type": "boolean"
    },
    "clientCertificateEnforced": {
      "type": "boolean"
    },
    "hostnameVerificationIgnored": {
      "type": "boolean"
    }
  }
}