Skip Headers
Oracle® Beehive Administrator's Reference Guide
Release 2 (2.0.1.8)

Part Number E16649-04
Go to Documentation Home
Home
Go to Book List
Book List
Go to Table of Contents
Contents
Go to Feedback page
Contact Us

Go to previous page
Previous
PDF · Mobi · ePub

4 Oracle Beehive Property Reference

This module contains the following topics:

Introduction to Oracle Beehive Properties

This section contains the following topics:

Common Oracle Beehive Component Management Commands

Table 4-1, "Component Management beectl Commands" lists beectl commands you are likely to use when managing Oracle Beehive components.

Note:

For complete descriptions and syntax for these beectl commands, see Chapter 2, "Oracle Beehive Command Line Utility".

Table 4-1 Component Management beectl Commands

Command Description

list_components

Lists the components in the configuration repository

list_connection_pools

Lists available connection pools in the system

list_properties

Fetches the value of the given property name for the given component ID. If property name is not specified then all the properties are listed

list_ports

Lists all ports in use (by the current Oracle Beehive server), including which component and property is using the port, and the protocol in use by that port

modify_port

Changes the port through which a service communicates. You must specify the protocol. If your port change affects a privileged port, you must take the additional steps in "Modifying Oracle Beehive Ports using Privileged Port Numbers" when using this command

list_property_metadata

Lists the metadata about all the properties of a component

modify_property

Updates the value(s) for the named property for the component identified by --component. Multiple values can be set for one property

modify_secure_property

Updates the sensitive property of the object identified by the --component

list_statistics

Lists collected statistical information about the functioning of a given type of component

delete_property

Clears the value of specified property in the configuration object identified by specified ID


Managing Oracle Beehive Component Properties

This section describes beectl commands that are used for managing component parameters.

This section contains the following topics:

Modifying Oracle Beehive Component Properties

Many Oracle Beehive components have lists of associated properties which are not directly exposed in an beectl command. Instead, you can set them by using the following common commands.

A subset of components are services. Each of the Oracle Beehive services has a system defined alias. The system defined alias is a unique name that you can use with most commands to identify a service for the purposes of configuration. All of the system defined aliases for Oracle Beehive services begin with an underscore character (_). For example, the E-Mail Service has a system defined alias of _EmailService.

In some cases, you may see a property which is itself used to contain properties (sub-properties). You can use the beectl list_properties command with the alias of the service or the name of the component and the name of such a property, with a colon character between them, to list the sub-properties.

For example, the E-mail Service has a property called "SMTPProperties". You can list its properties by using the beectl list_properties command:

beectl> list_properties --component _EmailService:SMTPProperties

You can review the names of all Oracle Beehive components by using the beectl list_components command:

beectl> list_components

All of the Oracle Beehive components are listed.

For each service, prepend an underscore to the Component Type to get the service system alias. For example, the Component Type "EmailService" has a system alias of _EmailService.

Note:

The list_properties command works on any Oracle Beehive system object. The --component value is case-insensitive, and will take as valid any identifier of a system object, any system object alias, or any user-defined alias.

User-defined aliases are modifiable properties of any system object, with the property name of Alias. Generally in Oracle Beehive documentation the system defined alias or component ID is used in examples, but you may always substitute a user defined alias in the --component of a beectl command

To set a property using beectl, use the following procedure:

  1. Use the beectl list_properties command to get the list of all properties for the component you want to configure. Each property is listed by name, along with its current value:

    beectl> list_properties --component _EmailService:SMTPProperties
    

    In this example, the name of the E-Mail Service SMTP component is entered, with the E-mail Service system alias, to get properties for the SMTP Server component.

  2. Use the beectl modify_property or delete_property commands to make the desired change to the property you specify:

    beectl> modify_property --component _EmailService:SMTPProperties --name <property_name> --value <new value>
    

    In this example, the value of an SMTP Server property is modified to a new value. It is an absolute replacement of the property value.

    However, if it is a list of values that is to be changed, the syntax should be:

    beectl modify_property --component <oc4j>:StartJavaExecutionArguments --name  AdditionalOptions --value=<value1> --value=<value2> --value=<value3>  --value=<valueNNN> --activate_configuration 
    

    Note:

    Line breaks have been inserted in the following example for better readability.
    beectl modify_property
      --component _CURRENT_SITE:Database
      --name AffinityServiceNames
      --value "(DESCRIPTION=
          (ADDRESS_LIST=
            (ADDRESS=(PROTOCOL=TCP)(HOST=host1.example.com)(PORT=1521)))
          (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=afserv1.example.com)))"
      --value "(DESCRIPTION=
          (ADDRESS_LIST=
            (ADDRESS=(PROTOCOL=TCP)(HOST=host2.example.com)(PORT=1521)))
          (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=afserv2.example.com)))"
      --value "(DESCRIPTION=
          (ADDRESS_LIST=
            (ADDRESS=(PROTOCOL=TCP)(HOST=host3.example.com)(PORT=1521)))
          (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=afserv3.example.com)))"
      --value "(DESCRIPTION=
          (ADDRESS_LIST=
            (ADDRESS=(PROTOCOL=TCP)(HOST=host4.example.com)(PORT=1521)))
          (CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=afserv4.example.com)))"
    

    Note:

    Running the following command will clear all existing values for the additional options, including the XX:CompileCommand=exclude,oracle/ocs/cspi/OcsExceptionMetadata.bind type values

    beectl modify_property –component <oc4j>:StartJavaExecutionArguments --name AdditionalOptions -revert_to_default

    Caution:

    If you are changing any port number to a privileged port (a port number below 1024) on a UNIX or Linux installation, you must first perform a special procedure, and then change the port. First follow the special procedure in "Modifying Oracle Beehive Ports using Privileged Port Numbers", and then follow the procedure below to change the port.
  3. Whenever you change a property in Oracle Beehive, you are making an alteration to the proposed configuration. You must activate a proposed configuration before changes you have made are actually applied to the running Oracle Beehive deployment. When you are done making configuration changes, activate the proposed configuration using the beectl activate_configuration command:

    beectl> activate_configuration
    

    This command saves your proposed configuration, performs a background validation of the configuration, and then activates it.

    You can also append the --activate_configuration option to any beectl command, causing the system to perform these steps automatically on command completion. The syntax is:

    beectl append_value --component <component> --name <property name> --value=<value1> --activate_configuration
    

    Above command will add on to the existing property value. You can review information about various proposed and applied system configurations by using the beectl list_configuration_versions command

  4. If you modify any of the properties in Table 4-2, "Properties Requiring beectl modify_local_configuration_files when changed" , you must also run the beectl modify_local_configuration_files command.

  5. In the following cases, you must also restart a service, component, or the entire deployment, using the beectl restart command:

    • Changing the database connection pool requires a full restart of Oracle Beehive (bug 6335906)

    • Changing the Instant Message Service's XmppPort or XmppSslPort properties requires that you restart the affected component

    • Changing the DeliveryPoolSize parameter of the Message Delivery Service requires you to restart all affected Message Delivery Service instances

See also:

For a reference on using the beectl command-line interface, see Chapter 2, "Oracle Beehive Command Line Utility".

Table 4-2 Properties Requiring beectl modify_local_configuration_files when changed

Component Property

AuthenticationService

SsoType

SsoLogoutUrl

UseJazn

WnaEnabled

WnaKeytab

WnaPrincipal

OssoConfigFile

AuthStoreType

SsoType

LoginAttempts

LockoutTime

UseSecureCookie

WsSecuritySamlEnabled

WsSecuritySigKeyAlias

WsSecuritySigKeyPwd

WsSecurityExpiry

BeehiveInstance

LogBaseDir

WalletDir

WalletPassword

KeystoreFile

KeyStoreFilePassword

Bti

ControlPort (CtrlPort)

Status

StartJavaExecutionArguments

StopJavaExecutionArguments

Database

ConnectDescriptor

XaServiceNames

OnsNodeConfiguration

Database.AccessSchema

UserName

Password

Database.ConnectionPool

ConnectionProperties

MaxConnections

MinConnections

InitialConnections

MaxStatementsLimit

ConnectTimeout

InactivityTimeout

TimeToLiveTimeout

AbandonedConnectionTimeout

PropertyCheckInterval

ConnectionWaitTimeout

LowerThresholdLimit

HttpServer

HttpSslListenPort

HttpListenPort

OsUser

OsGroup

Timeout

ServerAdmin

MaxClients

ServerRoot

DocRootLimitExcept

KeepAliveTimeout

SSLLogLevel

LogLevel

Status

HttpServerCluster

HttpServerSslEnabled

SslTerminatedByLoadBalancer

LdapServer

LdapServerHostName

LdapServerPort

LdapServerSslPort

SslEnabled

LdapServerUser

LdapServerPassword

UserSearchBase

GroupSearchBase

UserObjectClass

GroupObjectClass

PrimaryAuthenticationAttribute

DirectoryType

ManagedOc4j

AdminPassword

Status

AjpPortMaxValue

AjpPortMinValue

RmiPortMaxValue

RmiPortMinValue

RmisPortMaxValue

RmisPortMinValue

JmsPortMaxValue

JmsPortMinValue

JGroupPortMaxValue

JgroupPortMinValue

StartJavaExecutionArguments

StopJavaExecutionArguments

ManagedOc4jCluster

AjpsEnabled

AdminPassword

OrmisEnabled

Opmn

RequestPort

RemotePort

LocalPort

OpmnCluster

NotificationServerSslEnabled

Opmns

Server

PrimaryHostName

SipListenerIPAddress

SipContainer

SipPortMaxValue

SipPortMinValue

SipEnabled

Site

LanguagePack

ClusteringEnabled

SsoKeyAlias

VirtualServer

HttpPort

HttpSslPort

ServerName


Exporting Configuration Data

You may export the entire system model configuration data into an XML file for any given configuration version with the beectl export_configuration_data command.

You may provide your Oracle support representative the output from this command. This will help your representative investigate any problems with your Oracle Beehive deployment faster. You may also use the output of from this command to compare the configuration between different Oracle Beehive deployments, such as between a test and a production deployment.

Note:

For security reasons, secure values do not appear in the output of the beectl export_configuration_data command.

Modifying Oracle Beehive Ports using Privileged Port Numbers

You have the option of configuring various Oracle Beehive components to use privileged ports (ports below 1024) on UNIX and Linux based deployments. For example, the standard port for the IMAP service is port 143.

Any time you modify a port, and the new port number is a privileged port, you must perform the following procedure. Perform this procedure first, and then make the port change. You must perform this procedure when you change from a non-privileged port to a privileged port, and when you change from one privileged port to another privileged port.

If you have previously performed this procedure, you can skip to step 4:

  1. From the command line, navigate to the following file:

    $ORACLE_HOME/beehive/bin/hasbind
    
  2. Using the sudo command, set the owner of the file to root, and modify the permsissions on the file:

    sudo chown root hasbind
    sudo chmod a+sx hasbind 
    

    The file should have the following permissions (the file date and group will be different):

    -rws--s--x   1 root    g900   31395 Jun 18 14:01 hasbind
    
  3. Then create a file /etc/cap.ora. It must be owned by root and should be read-only for everybody except root:

    -rw----r--  1 root root 34 Jun 18 14:05 /etc/cap.ora
    
  4. Edit the /etc/cap.ora file, so that it contains a single line, like the following:

    cat /etc/cap.ora
    +user <user>: bind port 25,143
    

    Replace <user> with the software owner (the user used to install Oracle Beehive). List each privileged port you will configure an Oracle Beehive service to use, separated by commas. If you are changing from one privileged port to another privileged port, you can delete the port number that will become unused, to release it.

  5. You may now configure Oracle Beehive components to use the privileged ports you have designated in the cap.ora file. Follow the procedure for changing ports as normal.

Properties Described in This Module

This module describes the properties for the following components:

Table 4-3 Components

Component Properties

Common Properties: These properties are common to all components

Alias, LightweightThreadCount, LoggingProperties, ServiceApplication, ServiceInstances, Site, Status

Common Properties for ServiceInstances: These properties are common to all ServiceInstances

J2eeApplicationName, LightweightThreadPriority, Oc4j

AccessControlService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

AlarmService

Database, DatabaseRetryIntervalList, DefaultExpiryTime, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ApplicationImage

EarFileName, ServiceInterface

AuditService

Database, DatabaseRetryIntervalList, LogLevel, LogonRecordDuration, ReadOnlyDBAccessEnabled, RecordsPurgeEnabled, RecordsRetentionPeriod, UdsCacheDisabled

AuthenticationService

AuthStoreType, AuthenticationPlugins, AuthenticationRealm, Database, DatabaseRetryIntervalList, JssoSessionTimeout, LockoutTime, LogLevel, LoginAttempts, OssoConfigFile, PostAuthClientInfoUpdatesDisabled, ReadOnlyDBAccessEnabled, S2SIdentities, SAMLRegistrationMap, SsoLogoutUrl, SsoType, TokenTimeout, UdsCacheDisabled, UseJazn, UseSecureCookie, UseSecureHash, WsSecurityExpiry, WsSecuritySamlEnabled, WsSecuritySigKeyAlias, WsSecuritySigKeyPwd

AuthenticationService.AuthenticationPlugin

AuthenticationType, Enabled, PluginProperties, QualifiedClassName

BdkService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, RestProperties, SoapProperties, UdsCacheDisabled

BdkService.RestProperties

PrivateProperties, PublicProperties

BdkService.RestProperties.PrivateProperties

NotificationQueuePollConcurrencyLimit, StreamBufferSize, TempFileStore

BdkService.RestProperties.PublicProperties

DebugModeEnabled, MaxBatchSize, NotificationQueuePollTimeout, NotificationQueueSuspendThreshold, NotificationSessionTTL, PresenceConnectionsLimit

BdkService.SoapProperties

DebugMode, MaxRequestSize

BeeCentralService

Database, DatabaseRetryIntervalList, Dial8HintLocaleStrings, EnableDownloadCenter, HelpLink, LogLevel, ReadOnlyDBAccessEnabled, SmsOptInHintLocaleStrings, UdsCacheDisabled

BeehiveConferencingService

ConfJavaDeployJavaURL, ConfJavaJNLP, ConferenceClientDownloadLocationMac, ConferenceClientDownloadLocationWin, Database, DatabaseRetryIntervalList, EnableDownloadCenter, HelpLink, JREDownloadURL, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

BeehiveInstance

AvailableNumberOfProcessors, AvailablePhysicalMemoryInMB, BeehiveInstanceName, Bti, DiagnosabilitySettings, HttpServer, KeystoreFile, KeystoreFilePassword, LogBaseDir, Oc4jInstances, Opmn, OracleHome, Server, WalletDir, WalletPassword

BeehiveJ2eeApplication

No other unique properties exist

BeekeeperService

Database, DatabaseRetryIntervalLis, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

Bti

BeehiveInstance, BtiProcessPingTimeout, ClientWorker, CtrlPort, LogDir, Redirector, ServerPort, ServerWorker, StartJavaExecutionArguments, StopJavaExecutionArguments

BtiClientWorker

AdditionalExecArgs, Bti, NumberOfWorkers

BtiComponent

AdditionalExecArgs

BtiGlobal

BackendSecurityMode, ClientPort, SecureClientPort

BtiRedirector

AdditionalExecArgs, Bti

BtiServerWorker

AdditionalExecArgs, Bti, NumberOfWorkers

CalDAVService

CollectionBrowsingEnabled, Database, DatabaseRetryIntervalList, DefaultFutureTimePeriodInDay, DefaultPastTimePeriodInDay, ISchedule, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

CalDAVService.ISchedule

Enabled, NoProxyFor, ProxyAuthId, ProxyAuthKey, ProxyHost, ProxyPort, ProxyType, Servers

CalDAVService.ISchedule.Server

DomainRegexp, IncomingAllowHostRegexp, ncomingAllowIPRegexp, IncomingAuthId, IncomingAuthKey, IncomingAuthMethod, Name, OutgoingAuthId, OutgoingAuthKey, OutgoingUrl

ClientManagementService

Database, DatabaseRetryIntervalList, DebugMode, LogLevel, NotificationQueueResumeThreshold, NotificationQueueSuspendThreshold, OutputFrameSize, ReadOnlyDBAccessEnabled, SessionTimeout, StreamReadBufferSize, StreamWriteBufferSize, TraceEnabled, UdsCacheDisabled

CoexistenceService

CoexistenceEnabled, ConnectorProperties, ContactProperties, Database, DatabaseRetryIntervalList, FreeBusyProperties, LogLevel, MeetingProperties, MessageProperties, ReadOnlyDBAccessEnabled, RequestSenderEnabled, TaskProperties, UdsCacheDisabled

CoexistenceService.ClusteredTaskProperties

No other unique properties exist

CoexistenceService.ConnectorProperties

SmtpServerHostName, SmtpServerPort

CoexistenceService.ContactProperties

AttachmentMaxSizeInKiloByte

CoexistenceService.ContainerSpecificProperties

AttachmentMaxSizeInKiloByte

CoexistenceService.DominoProperties

SmtpServerHostName, SmtpServerPort

CoexistenceService.ExchangeProperties

SmtpServerHostName, SmtpServerPort

CoexistenceService.ExpertiseProfilingProperties

AttachmentMaxSizeInKiloByte

CoexistenceService.FreeBusyProperties

FutureTimePeriodInDay, PastTimePeriodInDay

CoexistenceService.InstanceTaskProperties

No other unique properties exist

CoexistenceService.MeetingProperties

AttachmentMaxSizeInKiloByte, ImportDataFutureTimePeriodInDay, ImportDataPastTimePeriodInDay

CoexistenceService.MessageProperties

AttachmentMaxSizeInKiloByte, ImportDataFutureTimePeriodInDay, ImportDataPastTimePeriodInDay

CoexistenceService.ServiceManagerProperties

No other unique properties exist

CoexistenceService.TaskProperties

AttachmentMaxSizeInKiloByte, ImportDataFutureTimePeriodInDay, ImportDataPastTimePeriodInDay

CompositeStateManageable

No other unique properties exist

ConferenceMonitoringService

ClientConnectInfo, Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ConferenceService

Database, DatabaseRetryIntervalList, DefaultDialoutCallTimeout, DefaultParticipantCodec, DefaultSipRegistrationExpiresInterval, LogLevel, OwcHostWaitSessionTimeout, OwcLogFlushPeriod, OwcMediaHostServiceBusAddressPrefix, OwcMediaHostServiceLoadBalanceBusAddressSuffix, OwcRosterServiceBusAddressPrefix, OwcRosterServiceLoadBalanceBusAddressSuffix, OwcUseRemoteMediaSessions, ReadOnlyDBAccessEnabled, SIPPSTNGatewayIPAddres, SIPPSTNGatewayPort, SipRegistrationEnabled, UdsCacheDisabled

ConferenceSessionService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ConnectionPoolConsumer

No other unique properties exist

CustomService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

Database

AccessSchemas, AffinityPool, AffinityServiceNames, BusinessDataServiceName, ConfigServiceName, ConnectDescriptor, DefaultAccessSchema, DefaultNonXaPool, DefaultXaPool, DiagnosabilityServiceName, EventListenerServiceName, OnsNodeConfiguration, ParentDatabase, ReadOnlyBusinessDataServiceName, SearchServiceName

Database.AccessSchema

BusinessDataSupported, ConfigDataSupported, DiagnosticDataSupported, EventListenerDataSupported, Password, ReadOnlyBusinessDataBaseSupported, SearchDataSupported, UserDataSupported, UserName

Database.AffinityPool

AbandonedConnectionTimeout, ConnectTimeout, ConnectionProperties, ConnectionWaitTimeout, InactivityTimeout, InitialConnections, LowerThresholdLimit, MaxConnections, MaxRetryAttemptLimit, MaxRetryTimeLimit, MaxStatementsLimit, MinConnections, PropertyCheckInterval, ReadTimeout, ServiceStatusCheckInterval, StatusChangeErrorThreshold, TimeToLiveTimeout, ValidateConnection

Database.ConnectionPool

AbandonedConnectionTimeout, ConnectTimeout, ConnectionProperties, ConnectionWaitTimeout, InactivityTimeout, InitialConnections, LowerThresholdLimit, MaxConnections, MaxRetryAttemptLimit, MaxRetryTimeLimit, MaxStatementsLimit, MinConnections, PropertyCheckInterval, ReadTimeout, TimeToLiveTimeout, ValidateConnection

DeletedSystemObject

No other unique properties exist

DeviceManagementService

BlockedDevices, Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled, UncertifiedDeviceAllowed

DeviceManagementService.BlockedDevice

Description, DeviceId

DiagnosabilitySettings

BaseErrorCodeProperties, ContextProperties, ErrorCodeDBPersistenceEnabled, ErrorCodeDBProperties, ErrorCodeLoggingProperties, ProbeEnabled, ProbeProperties

DiagnosabilitySettings.ContextProperties

IncludeCallerStacks, PropagationEnabled

DiagnosabilitySettings.ErrorCodeProperties

ExcludedErrorCodes, IncludeStackTraces, IncludedErrorCodes, LoggingSeverity, ReportingSeverityThreshold, UploadInterval

DiagnosabilitySettings.ProbeProperties

LightWeightEnabled, MaxSize, PersistenceInterval, StorageLocation

DiscussionsService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

EmailService

CSIProperties, CoexUserLocal, Database, DatabaseRetryIntervalList, DirectoryCacheTTL, GlobalDomainName, IMAPEnabled, IMAPProperties, LocalEmailPatterns, LogLevel, MaxDirectoryCacheEntries, MaxMailSz, NonLocalEmailPatterns, PersistenceProperties, ReadOnlyDBAccessEnabled, SMTPEnabled, SMTPProperties, SaveParseErrorEmails, SortByAddressOnly, SubjectSortingGroupingRules, SubjectSortingReplacementRules, TimeoutCheckingInterval, TransportProperties, UdsCacheDisabled

EmailService.CSIProperties

MaxLoadCount, StreamBufferSize, StreamMaxReadChunkSize, StreamMaxWriteChunkSize, StreamPreFetchSize, StreamTimeout, VMSProperties

EmailService.EndpointProperties

EndpointName, EndpointScheme

EmailService.IMAPProperties

AssumeSingleEndpoint, CacheMessageSize, ClientKeepAliveInterval, EndpointPropertiesList, FolderCacheDirectory, FolderOpenBatchSize, FolderPollingInterval, FolderSyncBatchSize, LoginErrorThreshold, MaxFolderCacheSize, MaxSessions, MessageLoadBatchSize, ParseErrorThreshold, Port, ProtocolLoggingEnabled, ServerSessionConcurrency, SessionTimeout, ShowInstanceNameInBanner, StreamReadBufferSize, SurrogateAuth, TlsMandatory, UseTls

EmailService.PersistenceProperties

CopyBatchSize, DbConnRetry, DeleteBatchSize, DurableFileRoot, MoveBatchSize, PldStoreCacheLinger, PldStoreCleanupInterval, PldStoreMaxMemCachedRecords, PldStoreMaxOpenFDs, PldStoreRecordCacheSz, PldStoreStreamBufSz, TempFileRoot, UndeleteBatchSize, UpdateFlagsBatchSize

EmailService.SMTPProperties

AssumeSingleEndpoint, Authentication, DSNEnabled, EndpointPropertiesList, Port, ProtocolLoggingEnabled, RelayProtocolLoggingEnabled, SendMailEvenIfNoTls, ServerSessionConcurrency, UseTls, VMSEvaluatorTopLevel, VMSPropertiesList

EmailService.SMTPProperties.VMSProperties

AuthMandatory, CustomDisplayName, CustomDomainName, CustomProductVersion, LogAllExceptions, MaxAbortedTransitionsPerSession, MaxBadTransitionsPerSession, MaxCommandLineSize, MaxRcptsPerTx, MaxRejectedAddressesPerSession, MaxSizeBeforeAttackSuspected, MaxSzAbortTx, MaxUselessCommandsPerSession, NextCommandTimeout, NextDataChunkTimeout, QuitWriteTimeout, RecipientMatcherTopLevel, RejectAll, SenderMatcherTopLevel, ShowInstanceNameInBanner, SupressReceivedFrom, SupressResponseText, TlsMandatory, UseDefaultDisplayName, UseDefaultDomainName, UseDefaultMaxSz, UseDefaultProductVersion, VMSName

EmailService.TransportProperties

AcceptInvalidLocalUsers, DeliveryConcurrency, DeliveryTopLevel, InMemoryQueueSize, KeepAliveInterval, LocalDeliveryBatchSize, MaxReceivedHeaders, MaxRetryPeriod, MaximumDBMessageQueuePercentage, MinimumDBMessageQueuePercentage, MsgTerminusTopLevel, PreResolutionTopLevel, ProcessingEnabled, QueuePollInterval, RelayServer, ResolutionTopLevel, RetryInterval, SMTPDeliveryBatchSize, SMTPDeliveryCheckpoint, ScanOnUpload, SentEmailPluginEnabled, SimpleRelayMode, ThreadPoolSize

Enterprise

CollabId, Name

EventService

AsyncActionRetryCount, AsyncActionRetryInterval, AsyncLogLevel, Database, DatabaseRetryIntervalList, LogLevel, MaxThreadPoolSize, PreEvaluateThresholdRuleCount, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ExpertiseService

ActiveLanguages, Database, DatabaseRetryIntervalList, EnableExpertiseRequestExpiration, ExpertiseRequestExpirationInterval, LogLevel, MaxArtifactSize, MaxNumPublicTermsPerProfile, MaxNumTermsPerProfile, MaxNumUsersForBrokeredRequest, NumDaysFetchContent, NumProfilerParallelRuns, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ExternalJ2eeApplication

AdminPassword, AdminUsername, Hostname, Oc4jName, OpmnRequestPort

FaxMessageService

Database, DatabaseRetryIntervalList, DebugFlags, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

FtpService

ActiveModeEnabled, ChannelSecurity, DMSInstrumentation, DataConnectionPort, Database, DatabaseRetryIntervalList, DefaultCommandCharacterset, DefaultDataPort, FtpServerEnabled, InternalIP, ListeningPoint, LogLevel, MaxDCPortCount, Port, ReadOnlyDBAccessEnabled, SessionTimeout, UdsCacheDisabled, UploadBufferSize

HasHelpLink

HelpLink

HttpServer

BeehiveInstance, DocRootLimitExcept, HttpListenPort, HttpServerCluster, HttpSslListenPort, KeepAliveTimeout, LockFile, LogLevel, MaxClients, OsGroup, OsUser, SSLLogLevel, ServerAdmin, ServerRoot, Timeout

HttpServerCluster

HttpServerSslEnabled, HttpServers, ModOc4jMaxErrors, SslTerminatedByLoadBalancer

IdMap

Map

IdentityProviderService

Database, DatabaseRetryIntervalList, IdpSAMLIdentity, IdpUrl, LogLevel, ReadOnlyDBAccessEnabled, SpSAMLIdentity, SpUrl, UdsCacheDisabled

ImService

ArchivingEnabled, ChatRoomTranscriptsOn, ChatRoomXhtmlFormattingOn, Database, DatabaseRetryIntervalList, ImBufferStageSize, ImEndPointDeathDetectionTime, ImOfflinePurgingPeriodTimer, ImPurgingPeriodTimer, LogLevel, MaxRoomCount, MaxUsersInRoom, OnlyPasswordProtectedRooms, PendingMessagesLimit, ReadOnlyDBAccessEnabled, ReplayMessageHistoryOnJoin, UdsCacheDisabled

IrmService

ClassificationId, ClassificationLabelDescription, ClassificationLabelName, ClassificationLocale, ClassificationSystemId, ContentLabelDescription, ContentLabelLocale, ContentLabelName, Database, DatabaseRetryIntervalList, DesktopSyncURI, DesktopURI, IrmDesktopServiceEndPoint, IrmSealingServiceEndPoint, IrmUserName, IrmUserPassword, KeySetUUID, LicenseExpirationTime, LogLevel, ReadOnlyDBAccessEnabled, RequiresHttpAuth, RequiresHttps, SystemLabelDescription, SystemLabelLocale, SystemLabelName, UdsCacheDisabled

JavaExecutionArguments

AdditionalOptions, InitialHeapSizeInMB, InitialPermanentGenerationSizeInMB, MaximumHeapSizeInMB, MaximumPermanentGenerationSizeInMB

JcrServletService

AuthenticationScheme, Database, DatabaseRetryIntervalList, JCRServerEnabled, JcrSessionTimeout, LogLevel, MaxDownloadBufferSize, ReadOnlyDBAccessEnabled, UdsCacheDisabled, UploadBufferSize

LdapServer

DigestAuthenticationAttribute, DirectoryType, GroupObjectClass, GroupSearchBase, LdapServerConnectionPoolMaxSize, LdapServerConnectionTimeout, LdapServerHostName, LdapServerPassword, LdapServerPort, LdapServerSslPort, LdapServerUser, PrimaryAuthenticationAttribute, PrimaryAuthenticationCredential, ProtocolAuthenticationAttribute, ProtocolAuthenticationCredential, SslEnabled, UserObjectClass, UserSearchBase, VoiceAuthenticationAttribute, VoiceAuthenticationCredential

LoggingConfigurable.LoggingProperties

BaseLogLevel, MaxFileSize, MaxLogSize, ModuleLogLevel, RotationFrequency

ManagedOc4j

AdminPassword, AdminUsername, AjpPortMaxValue, AjpPortMinValue, Applications, BeehiveInstance, Database, HttpThreadPoolConfiguration, JGroupPortMaxValue, JGroupPortMinValue, JcaThreadPoolConfiguration, JmsPortMaxValue, JmsPortMinValue, ManagedOc4jCluster, Oc4jName, PseudoTranslationEnabled, PseudoTranslationStrategy, ResourceAdapterInstances, RmiClientTimeout, RmiConnectionThreadPoolConfiguration, RmiLookupTimeout, RmiPortMaxValue, RmiPortMinValue, RmiRequestThreadPoolConfiguration, RmisPortMaxValue, RmisPortMinValue, SipContainer, StartJavaExecutionArguments, StopJavaExecutionArguments, SystemThreadPoolConfiguration

ManagedOc4jCluster

AdminPassword, AjpsEnabled, ManagedOc4js, OrmisEnabled

ManagedOc4jCluster.HealthMonitorProperties

No other unique properties exist

ManagementService

AutoSyncSaveListenerSleepIntervalInSeconds, AutoSyncSaveListenerTimeoutInSeconds, Database, DatabaseRetryIntervalList, ExportConfigurationEnabled, LocalFileSyncEnabled, LogLevel, LogSearchMaximumResults, LogSyncEnabled, LogUploadFilter, LogUploadInterval, ReadOnlyDBAccessEnabled, StabilityMonitorProperties, SystemDataCollectorProperties, UdsCacheDisabled, UploadLevel

ManagementService.StabilityMonitorProperties

StabilityMonitorEnabled

ManagementService.SystemDataCollectorProperties

CollectionInterval, CollectorEnabled, SystemDataFileRotationInterval, SystemDataFileRotationSize

MimService

AutoOfflineTimeAfterClientDisconnect, Database, DatabaseRetryIntervalList, LogLevel, MaxInvalidLoginAttempt, ReadOnlyDBAccessEnabled, UdsCacheDisabled, UnauthConnectionLiveTime

MobileDmService

Database, DatabaseRetryIntervalList, LogLevel, MaxClientConnections, MaxInvalidAttempts, ReadOnlyDBAccessEnabled, TtlAuthenticated, TtlUnauthenticated, UdsCacheDisabled

NamedSystemObject

Name

NotificationDeliveryService

ActionAskSettings, Database, DatabaseRetryIntervalList, DeliveryPoolSize, LogLevel, MaxDeliveryStatusAge, MaxTrackingAge, ReadOnlyDBAccessEnabled, SmsSettings, SystemUserName, UdsCacheDisabled, XmsSettings

NotificationDeliveryService.ActionAskSettings

ActionableEmailsNotificationDisabled, ActionableIMsNotificationDisabled, ActionableNotificationReplyDisabled, ActionableNotificationUser, ActionableSMSNotificationDisabled, ProcessingPoolSize, UserCacheSize

NotificationDeliveryService.SmsSettings

MaxSmsChunks, ShortCode, ShortCodeType, SmartMessageCharacterCount, SmsMode

NotificationDeliveryService.WebProxySettings

Enabled, ProxyHostName, ProxyPassword, ProxyPort, ProxyUserName

NotificationDeliveryService.XmsSettings

WebProxySettings, XmsPassword, XmsServiceUrl, XmsUserName

ObjectEventPublisherService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

Oc4j

AdminPassword, AdminUsername, Applications, Database, Oc4jName, PseudoTranslationEnabled, PseudoTranslationStrategy, ResourceAdapterInstances, RmiClientTimeout, RmiLookupTimeout

OmaService

CalendarSyncEnabled, ContactsSyncEnabled, Database, DatabaseRetryIntervalList, DbLogKeepDays, DeviceMetaDataCacheSize, DsSessionCacheSize, EmailNumberLimit, EmailSyncEnabled, EntitiesPerBulkLoad, EntitiesPerContactBulkLoad, EntitiesPerEmailBulkLoad, EntitiesPerEventBulkLoad, EntitiesPerNoteBulkLoad, EntitiesPerTaskBulkLoad, EventSyncRangeValidationThreshold, LogLevel, LogSyncmlForUsers, MaxConcurrentRequests, MaxConcurrentSessions, MaxConcurrentSlowSyncs, MaxMessageSize, MaxObjectSize, MaxSyncRangeBack, MaxSyncRangeForward, Md5Required, Md5Supported, NotesSyncEnabled, OmaDsEnabled, ReadOnlyDBAccessEnabled, ResumeEnabled, RetriesWhenDbUnavailableDelayInMilliSec, SessionLogRequired, SessionTimeOut, SyncmlLogRequired, TaskSyncRangeValidationThreshold, UdsCacheDisabled

OmsResourceAdapter

ResourceAdapterImage, ResourceAdapterInstances

OmsResourceAdapterInstance

ResourceAdapter

Opmn

BeehiveInstance, LocalPort, OpmnCluster, RemotePort, RequestPort

OpmnCluster

NotificationServerSslEnabled, Opmns

OwcStreamingService

Database, DatabaseRetryIntervalList, HttpTunnelingEnabled, HttpTunnelingPort, LogLevel, MaxHttpTunnelingClientsAllowed, MaxRtmpClientsAllowed, MaxRtspClientsAllowed, ReadOnlyDBAccessEnabled, RtmpEnabled, RtmpPort, RtspEnabled, RtspPort, ServiceName, UdsCacheDisabled

PolicyService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

PresenceService

ActivityStartTimeThreshold, CacheSize, Database, DatabaseRetryIntervalList, LogLevel, PollInterval, PublicPresenceEnabled, ReadOnlyDBAccessEnabled, UdsCacheDisabled

PushMailService

Database, DatabaseRetryIntervalList, HeartbeatInterval, IMAPConnLiveTime, LogLevel, MaxConcurrentUsers, MaxInboxMessages, MaxMessageSize, NumberDaysPast, ReadOnlyDBAccessEnabled, UdsCacheDisabled

PushService

APNSSettings, Database, DatabaseRetryIntervalList, LogLevel, MaxClientConnections, MaxInvalidAttempts, MaxTruePushClientConnections, ReadOnlyDBAccessEnabled, TtlUnauthenticated, UdsCacheDisabled

PushService.APNSSettings

APNSEnabled, APNSHostName, APNSKeyStoreContents, APNSPort, ProxyEnabled, ProxyHostName, ProxyPassword, ProxyPort, ProxyUserName

RecordsManagementService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled, Urm

RemoteContentService

Database, DatabaseRetryIntervalList, DiskSpoolDirectory, KeystoreAlias, KeystoreAliasPassword, KeystoreFile, KeystorePassword, LogLevel, MaxDiskSpoolSpace, ReadOnlyDBAccessEnabled, UCMConnectionTimeout, UCMDefaultSearchMaxResults, UCMMaxConnections, UdsCacheDisabled, WebDAVMaxConnPerHost, WebDAVMaxTotalConns

RemoteSite

No other unique properties exist

ResourceAdapter

ResourceAdapterImage, ResourceAdapterInstances

ResourceAdapterImage

RarFileName, ResourceAdapterInterface

ResourceAdapterInstance

ResourceAdapter

ResourceDirectoryService

AllResourcesReadableByAll, Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, SearchSizeLimit, UdsCacheDisabled

RmServletService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SAMLIdentity

KeyAlias, Service

SearchService

AttachmentMimetypeBlackList, CaptureChanges, ChangeCaptureUserList, CrawlJobMaxNapTime, CrawlJobThreshold, Database, DatabaseRetryIntervalList, IndexFragmentationThreshold, IndexJobMaxNapTime, IndexJobThreshold, IndexOptimizationInterval, IndexOptimizationMaxTime, IndexOptimizationStartDate, LogLevel, MaxResults, MaxSnippetEntitySize, MdataOptimizationInterval, ParallelQueryDegree, ParallelQueryPoolSize, ReadOnlyDBAccessEnabled, SearchDisclaimerText, UdsCacheDisabled, WildcardChar

Server

AlternateHostNames, BeehiveInstances, PrimaryHostName, SipListenerIPAddress

Service

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SesEndptService

Database, DatabaseRetryIntervalList, Host, LogLevel, MaxNoUsersContainsOper, Port, ReadOnlyDBAccessEnabled, SesEndptServiceEnabled, SesTrustedEntityMap, UdsCacheDisabled

SipContainer

ManagedOc4j, SipEnabled, SipPortMaxValue, SipPortMinValue

SipGateway

GatewayIPAddress, GatewayPort, SipGatewayCluster

SipGatewayCluster

SipGateways

Site

BeehiveRootLogger, BtiGlobalConfiguration, BusinessDatabase, CipherKey, ClusteringEnabled, ConfigurationDatabase, Database, DatabaseRetryIntervalList, DiagnosabilitySettings, DiagnosticDatabase, EnterpriseId, Enterprises, EventListenerDatabase, HttpServerCluster, LanguagePack, LdapServer, ManagedOc4jCluster, Name, OpmnCluster, ReadOnlyBusinessDatabase, RemoteSites, ResourceAdapters, SearchDatabase, Servers, Services, SipGatewayCluster, SiteId, SsoKeyAlias, UnmanagedOc4js, VirtualServer, VirusScanEngineCluster

Site.DiagnosabilityProperties

No other unique properties exist

SmppDeliveryService

Database, DatabaseRetryIntervalList, LogLevel, MoSMSEnabled, ReadOnlyDBAccessEnabled, ShortCodeNumberPlanIndicator, SmppConnectionCount, SmppEnquireTime, SmppPassword, SmppProcessingThreadCount, SmppServiceUrl, SmppSystemID, SmppSystemType, SmppTimeOut, TlsEnabled, UdsCacheDisabled, UseQuerySMForStatus, VersionNumber

SoftwareImage

No other unique properties exist

StateManageable

No other unique properties exist

StatusManageable

No other unique properties exist

SubscriptionActionService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SubscriptionService

Database, DatabaseRetryIntervalList, LogLevel, MaxAnchorAgeInDays, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SyndicationService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SyndicationServletService

AuthenticationScheme, Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

SystemObject

No other unique properties exist

SystemObjectWithHelper

No other unique properties exist

SystemObjectWithStats

No other unique properties exist

TCPCommBasedScanEngine

ScanEngineClientCommPort, ScanEngineHostName, VirusScanEngineCluster

TCPCommBasedScanEngineCluster

CacheRefreshInterval, GatherDetailedStats, OverrideEngineResultEnabled, ScanEngineCommProtocol, ScanEngineCommProtocolVer, ScanEngines, ScanServiceProvider, VirusScanPolicy, VirusesToIgnore

TeamCollaborationApisService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

TeamCollaborationService

AsyncThreadPoolSize, CSRFSecurityEnabled, Database, DatabaseRetryIntervalList, ExecutorServiceThreadPoolSize, HelpLink, LogLevel, MaxWkspLogoSize, MultiTypeListingBatchSize, ReadOnlyDBAccessEnabled, RichTextAntiSamyEnabled, RichTextAntiSamyPolicyFilePath, SearchResultsBatchSize, TacitEnabled, UdsCacheDisabled

TimeManagementService

ConsistencyTasksEnabled, Database, DatabaseRetryIntervalList, EnableCleanupTask, EnableDynamicParticipants, EnableExternalParticipantNotificationDelivery, EnableExternalParticipantNotificationsWithIMIP, EnableGenericClassOfTMBusinessEvents, EnablePresenceIntegration, LogLevel, MaxOccurrencesForUnboundedRecurrence, MaxOccurrencesPerSeries, MaxSubscriptionBizEventRaisedPerOperation, ReadOnlyDBAccessEnabled, SystemBusyPeriod, UdsCacheDisabled

TimeManagementService.AccessControlComputationTaskProperties

No other unique properties exist

TimeManagementService.ChangeLogsCleanupTaskProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.ContainerSyncTaskProperties

No other unique properties exist

TimeManagementService.MethodMonitoringCleanupTaskProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.PurgedItemsCleanupProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.ResourceCleanupProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.ResourceConsistencyProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.StandardContextCleanupProperties

CanRunDuringSystemBusyPeriod

TimeManagementService.SystemBusyPeriod

Friday, Monday, Saturday, Sunday, Thursday, Tuesday, Wednesday

TimeZoneService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

TimeZoneService.DatabaseConfiguration

No other unique properties exist

TranscodingService

ArchiveFolderPath, Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

UdsCache

UdsCacheDisabled

UdsCacheService

BatchInterval, BatchLoadSize, CacheEnabled, CacheInitEnabled, CacheUpdateEnabled, Database, DatabaseRetryIntervalList, LogLevel, MaxHeapPercent, MaxResultCount, PollingInterval, PollingLoopThreshold, ReadOnlyDBAccessEnabled, RetryPollingInterval, UdsCacheDisabled

UnmanagedBeehiveInstance

AvailableNumberOfProcessors, AvailablePhysicalMemoryInMB, BeehiveInstanceName, Bti, DiagnosabilitySettings, HttpServer, KeystoreFile, KeystoreFilePassword, LogBaseDir, Oc4jInstances, Opmn, OracleHome, Server, WalletDir, WalletPassword

UnmanagedOc4j

AdminPassword, AdminUsername, Applications, Database, HostName, Oc4jName, OpmnRequestPort, PseudoTranslationEnabled, PseudoTranslationStrategy, ResourceAdapterInstances, RmiClientTimeout, RmiLookupTimeout, RmiPort, WalletDir, WalletPassword

UnsupportedSystemObject

No other unique properties exist

Urm

AgentName, DispositionLoaderInterval, DispositionProcessorInterval, RMAdminPassword, RMAdminUser, RmAdminEmailId, URMAdapterURL

UserDirectoryService

ConfigurationParameters, CustomAttributes, Database, DatabaseRetryIntervalList, DirectoryProfiles, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

UserDirectoryService.AttributeMap

Fields

UserDirectoryService.ConfigurationParameters

DbRetryCount, DbRetryIntervalMilliSeconds, GalEntryAccessChecked, MaxEntityAddressCount, SuperMaxEntityAddressCount

UserDirectoryService.ConfigurationParameters.Attribute

No other unique properties exist

UserDirectoryService.CustomAttribute

Description, Name, Type

UserDirectoryService.DirectoryAttributeMap

DirectoryAttributeMap

UserDirectoryService.DirectoryCache

Enabled, MaxCachedEntities, RefreshIntervalMinutes

UserDirectoryService.DirectoryProfile

DefaultFlag, DirectoryAttributeMap, GroupTypeMap, ProfileState, ScopeMap, UserTypeMap

UserDirectoryService.FieldMap

BeehiveFieldName, BeehiveFieldSubType, BeehiveFieldType, SourceAttribute, SourceSpecialHandling, SourceToTargetFieldValueMapping

UserDirectoryService.FieldMap.SourceTargetValueMapping

SourceFieldValue, TargetFieldValue

UserDirectoryService.GroupTypeMapEntry

GroupType, SourceFieldName, SourceFieldType, SourceFieldValue

UserDirectoryService.LdapDirectoryProfile

DefaultFlag, DirectoryAttributeMap, GroupTypeMap, LdapServer, PollInterval, ProfileState, ScopeMap, UserTypeMap

UserDirectoryService.MembershipMapEntry

MembershipCollabId, Name, SourceFieldName, SourceFieldType, SourceFieldValue

UserDirectoryService.ScopeMapEntry

MembershipMap, Name, ScopeCollabId, SourceFieldName, SourceFieldType, SourceFieldValue

UserDirectoryService.UserTypeMapEntry

SourceFieldName, SourceFieldType, SourceFieldValue, UserType

VirtualServer

BtiClientPort, BtiSecureClientPort, FtpPort, HttpPort, HttpSslEnabled, HttpSslPort, IPAddress, ImapPort, ImapSslEnabled, ImapSslPort, MxTunnelHostname, MxTunnelPort, ServerName, SmtpAuthRequired, SmtpPort, SmtpSslEnabled, SmtpSslPort, XmppPort, XmppSslEnabled, XmppSslPort

VirusScanConfigurable

OverrideEngineResultEnabled, VirusScanPolicy, VirusesToIgnore

VirusScanEngine

VirusScanEngineCluster

VirusScanEngineCluster

CacheRefreshInterval, GatherDetailedStats, OverrideEngineResultEnabled, ScanEngineCommProtocol, ScanEngineCommProtocolVer, ScanEngines, ScanServiceProvider, VirusScanPolicy, VirusesToIgnore

VoiceMessageService

Database, DatabaseRetryIntervalList, DebugFlags, EmailResendingEnabled, FacilityProperties, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled, VoiceMessageProperty

VoiceMessageService.EnterpriseProperties

EnterpriseCollabId, ExclusiveAudioContentURIs, Name, RecordPlaybackURIs, RecordStreamURIs, SharedAudioContentURIs, TelephoneAnsweringAddress

VoiceMessageService.FacilityProperties

ExclusiveAudioContentURIs, FacilityCollabId, Name, RecordPlaybackURIs, RecordStreamURIs, SharedAudioContentURIs

VoiceServletService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

WebdavService

AuthenticationScheme, BrowserSessionTimeout, DMSInstrumentation, Database, DatabaseRetryIntervalList, DavClientSessionTimeout, DefaultWelcomeDocs, DepthLimit, DisplayLastModifiedBy, DisplayLastModifiedOn, DisplayLockStatus, DisplayVersioningStatus, DownloadBufferSize, LogLevel, MinimumLockTimeout, ReadOnlyDBAccessEnabled, UdsCacheDisabled, UploadBufferSize, UserPreferenceRefreshTime, WebDAVServerEnabled

WikiService

Database, DatabaseRetryIntervalList, LogLevel, PluginHtmlAntiSamyEnabled, PluginHtmlAntiSamyPolicyFilePath, PluginHtmlEnabled, ReadOnlyDBAccessEnabled, UdsCacheDisabled, WikiTextReplace

WorkspacesService

AllowContentHtmlScripts, BlockedFileExtensions, Database, DatabaseRetryIntervalList, DbDownloadBufferSize, DbUploadBufferSize, LogLevel, MaxRecentActivitiesPerGroup, MembershipNotificationEnabled, MinRecentActivitiesPerGroup, QuotaNotificationEnabled, QuotaOverflowPercentage, ReadOnlyDBAccessEnabled, RecentActivityDaysToLive, RecentActivityInPersonalWorkspaceEnabled, RecentActivityPurgeType, UdsCacheDisabled

XmppService

Database, DatabaseRetryIntervalList, DomainNames, Language, LogLevel, MessagesOnInvalidAction, ReadOnlyDBAccessEnabled, SearchFields, SupportedAgents, UdsCacheDisabled, VersionRules, XmppPort, XmppSslPort, XmppTimerKeepAliveTime

ZimbraConnectorService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled

ZimbraUIService

Database, DatabaseRetryIntervalList, LogLevel, ReadOnlyDBAccessEnabled, UdsCacheDisabled


Common Properties

The following properties are common to all components:

Table 4-4 Common Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Alias

String

not applicable

May not start with an underscore ( _ )

Yes

No

Each SystemObject in the configuration has a Universally Unique Identifier (UUID) assigned by the system. An example UUID is f477dfe5-400d-41a2-b2a5-394ebba67293. You can assign an easier to remember Alias to a SystemObject and use the Alias in place of the UUID, for example, as the component identifier in beectl commands. Aliases must be unique, so you may not assign the same Alias to multiple SystemObjects. The validation performed on the proposed configuration at activation time ensures that no two SystemObjects have been assigned the same Alias. If duplicate Aliases are detected, the activation will fail and you must correct the situation before retrying the activation operation.

LightweightThreadCount

Integer

not applicable

Minimum = 0, maximum = 9223372036854775807

yes

No

Lightweight thread count for the service. A lightweight thread provides no guarantees on the thread context being used.

LoggingProperties

LoggingConfigurable.LoggingProperties (Structural property)

not applicable

No

No

Yes

A reference to a SystemObject that holds the property settings that configure logging behavior. You do not directly modify the value of this property. You configure logging behavior by modifying the properties of the referenced LoggingProperties object.

ServiceApplication

ApplicationImage (Structural property)

not applicable

No

No

Yes

The application image for the service. The application image models the EAR file that gets deployed to create service instances for the service.

ServiceInstances

Set<ServiceInstance> (Structural property)

not applicable

No

Yes

No

The list of ServicesInstances associated with the service.

Site

Site (Structural property)

not applicable

No

No

No

The site with which this service is associated.

Status

StatusManageable.Status (Legal values: ENABLED , DISABLED )

ENABLED

No

Yes

No

The Status, either ENABLED or DISABLED , of the current SystemObject. You do not directly modify the value of this property. The system manages the value of this property when you use an administration client such as beectl to enable and disable components of the deployment.


Common Properties for ServiceInstances

The following properties are common to all ServiceInstances:

Table 4-5 Common Properties for ServiceInstances

Name Data Type Default Values Accepted Values Mutable Read Only Description

J2eeApplicationName

String

not applicable

No

No

No

J2EE application name.

LightweightThreadPriority

Integer

5

Minimum=1, Maximum=10

Yes

No

Priority of lightweight threads for the service.

Oc4j

String

not applicable

No

No

No

The Oc4j instance associated with the BeehiveJ2eeApplication.


Component Properties

This section lists the properties for each Oracle Beehive component. If a component has only common properties, the table of properties is omitted. Refer to "Common Properties", and "Common Properties for ServiceInstances", for details about common properties.

The tables listing properties for components have the following columns:

  • Name: The property name

  • Data Type: One of the following types:

    • Integer: A whole number

    • Int: A whole number

    • String: Alphanumeric characters

    • Boolean: True or false, used to enable or disable a feature

    • Long: A whole number (allows larger values than Int or Integer)

    • Structural Property: A special type, usually unique to the component, that can contain a string in a specified format

    • SecureString: Alphanumeric characters, stored as an encrypted value

    • File: A logical path to a file or directory

    • List: A comma-delimited list of text values

    • Map: A set of key:value pairs

    • Level: Used for setting log levels; accepts one of a listed set of keywords

    • <Component>.<Property> Legal Values (): A unique property which accepts one from a list of legal values. For example: AuthenticationService.AuthStoreType (Legal values: db, ldap)

    • CollabID: An Oracle Beehive CollabID

  • Default Value: If the property is seeded with a default value during installation of Oracle Beehive, that value is listed

  • Accepted Values: If the range or set of values is constrained (beyond that allowed by its type), the constraint is shown

  • Mutable: Mutable properties can change over time from one version of the configuration to the next. When Mutable is set to No, the value can only be changed when it belongs to a new configuration object created in the proposed configuration. Once the proposed configuration is activated, all immutable properties will never change again.

  • Read Only: You can only use the beectl modify_property command to change the value of properties with Read Only set to No. You cannot use this command to modify properties with Read Only set to Yes.

    Internal Oracle Beehive code can still modify Read Only properties.

  • Description: A brief description of the property's function

AccessControlService

The following properties are available for AccessControlService:

Table 4-6 AccessControlService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


AlarmService

The following properties are available for AlarmService:

Table 4-7 AlarmService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DefaultExpiryTime

Long

259200

All permitted values

Yes

No

The amount of time (in seconds) that will elapse by default before an alarm expires. Applies in cases where no expiry value is explicitly set when the alarm is created. Alarms are used internally by some Oracle Beehive services, which can explicitly set an expiry that will override this default value.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ApplicationImage

The following properties are available for ApplicationImage:

Table 4-8 ApplicationImage Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

EarFileName

String

n/a

All permitted values

No

Yes

The file name of the enterprise archive (.ear) for a service or application image.

ServiceInterface

String

n/a

All permitted values

No

Yes

The name of the service's interface, which is used by the management model to cull service properties and statistics.


AuditService

The following properties are available for AuditService:

Table 4-9 AuditService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

LogonRecordDuration

int

480

Min=1, Max=6000

Yes

No

Specifies the logon record life time in minutes. Stale logon records are purged periodically by the purge process.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RecordsPurgeEnabled

boolean

false

All permitted values

Yes

No

Specifies the whether the audit record purging enabled or disabled. If the purging is enabled , records get purged if they are older than retention period.

RecordsRetentionPeriod

int

60

Min=1, Max=2147483647

Yes

No

Specifies the audit record retention period in days. Audit record is guaranteed to stay in the system until the retention period. Audit records get purged after the retention period.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


AuthenticationService

The following properties are available for AuthenticationService:

Table 4-10 AuthenticationService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthStoreType

AuthenticationService.AuthStoreType (Legal values: db, ldap)

db

All permitted values

Yes

No

Specifies the authentication repository type. Valid values: db, ldap

AuthenticationPlugins

List<AuthenticationPlugin> (Structural property)

n/a

All permitted values

Yes

No

Authentication plugins for the external authentication, only one such plugin can be in enabled state.

AuthenticationRealm

String

Authorized_Users

All permitted values

Yes

No

Specifies the default authentication realm for Oracle Beehive.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

JssoSessionTimeout

Integer

7200

All permitted values

Yes

No

SSO session timeout (in seconds) when the SSO Provider is JavaSSO. Note that this is a hard timeout, not an inactivity timeout. The session will timeout after this amount of time no matter what.

LockoutTime

Integer

7200

All permitted values

Yes

No

Specifies the duration (in seconds) that a user account will be locked out of the system if the maximum allowable login attempts is reached.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

LoginAttempts

Integer

-1

All permitted values

Yes

No

Specifies the number of failed login attempts allowed before a user account gets locked out of the system. -1 = No limit

OssoConfigFile

String

n/a

All permitted values

Yes

No

Specifies the configuration file for Oracle Single Sign-On (OSSO).

PostAuthClientInfoUpdatesDisabled

Boolean

false

All permitted values

Yes

No

Specifies whether updates to Client Session Information should be disabled or not after authentication. Valid values: true, false

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

S2SIdentities

String[]

n/a

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.AuthenticationServiceBundle, key DESC_LONG_S2S_IDENTITIES

SAMLRegistrationMap

Map<String,SAMLIdentity> (Structural property)

n/a

All permitted values

Yes

No

Specifies the SAML registration map, which contains trusted assertion issuers and service providers.

SsoLogoutUrl

String

n/a

All permitted values

Yes

No

Specifies the logout URL for single sign-on deployments. This is the URL to which users will be redirected after logging out of the system.

SsoType

AuthenticationService.SsoType (Legal values: jsso, osso)

jsso

All permitted values

Yes

No

Specifies the single sign-on type. Valid values: jsso, osso

TokenTimeout

Integer

300

All permitted values

Yes

No

Specifies the amount of time (in seconds) that an authentication token will remained timed out. 0 = Indefinitely

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UseJazn

Boolean

false

All permitted values

Yes

No

Specifies whether or not Oracle Internet Directory should be configured natively with Oracle Application Server using Java Authorization (JAZN). If disabled, Oracle Internet Directory is configured as an external LDAP server (recommended). Valid values: true, false

UseSecureCookie

Boolean

false

All permitted values

Yes

No

Specifies whether or not the JavaSSO cookie should be sent over a Secure Socket Layer (SSL) connection. If enabled, JavaSSO is not supported over non-SSL connnections. Valid values: true, false

UseSecureHash

Boolean

false

All permitted values

Yes

No

Specifies whether or not the configured secure hash value (in the LDAP server) should be used for the digest authentication when the authentication repository is an LDAP server. If disabled, the password value is used to calculate the digest. Valid values: true, false

WsSecurityExpiry

Integer

3600

All permitted values

Yes

No

Specifies the amount of time (in seconds) that will elapse before inbound and outbound message signatures expire for Security Assertions Markup Language (SAML) Web services ports.

WsSecuritySamlEnabled

Boolean

false

All permitted values

Yes

No

Specifies whether or not Security Assertions Markup Language (SAML) authentication is enabled for Oracle Beehive Web services. Valid values: true, false

WsSecuritySigKeyAlias

String

n/a

All permitted values

Yes

No

Specifies the key alias of outbound message signatures for Security Assertions Markup Language (SAML) Web services ports.

WsSecuritySigKeyPwd

SecureString

n/a

All permitted values

Yes

No

Specifies the key password of outbound message signatures for Security Assertions Markup Language (SAML) Web services ports.


AuthenticationService.AuthenticationPlugin

The following properties are available for AuthenticationService.AuthenticationPlugin:

Table 4-11 AuthenticationService.AuthenticationPlugin Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthenticationType

AuthenticationService.AuthenticationPlugin.AuthenticationType (Legal values: FORM)

n/a

All permitted values

Yes

No

Authentication type of the plugin.

Enabled

Boolean

false

All permitted values

Yes

No

Status of the authentication plugin, specifies whether the plugin is enabled for authentication.

PluginProperties

Map<String,String>

n/a

All permitted values

Yes

No

Map of properties required by the authentication plugin.

QualifiedClassName

String

n/a

All permitted values

Yes

No

Package qualified class name of the authentication plugin implementation.


BdkService

The following properties are available for BdkService:

Table 4-12 BdkService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RestProperties

BdkService.RestProperties

n/a

All permitted values

No

Yes

description bundle not set

SoapProperties

BdkService.SoapProperties

n/a

All permitted values

No

Yes

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


BdkService.RestProperties

The following properties are available for BdkService.RestProperties:

Table 4-13 BdkService.RestProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

PrivateProperties

BdkService.RestProperties.PrivateProperties

n/a

All permitted values

No

Yes

description bundle not set

PublicProperties

BdkService.RestProperties.PublicProperties

n/a

All permitted values

No

Yes

description bundle not set


BdkService.RestProperties.PrivateProperties

The following properties are available for BdkService.RestProperties.PrivateProperties:

Table 4-14 BdkService.RestProperties.PrivateProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

NotificationQueuePollConcurrencyLimit

int

100

Min=1, Max=1000

Yes

No

description bundle not set

StreamBufferSize

int

8192

Min=1, Max=2147483647

Yes

No

description bundle not set

TempFileStore

String

../../beehive/restspool/temp

All permitted values

Yes

No

description bundle not set


BdkService.RestProperties.PublicProperties

The following properties are available for BdkService.RestProperties.PublicProperties:

Table 4-15 BdkService.RestProperties.PublicProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DebugModeEnabled

boolean

true

All permitted values

Yes

No

description bundle not set

MaxBatchSize

int

100

Min=1, Max=2147483647

Yes

No

description bundle not set

NotificationQueuePollTimeout

int

2000

Min=10, Max=10000

Yes

No

description bundle not set

NotificationQueueSuspendThreshold

int

100

Min=10, Max=1000

Yes

No

description bundle not set

NotificationSessionTTL

int

60

Min=10, Max=1800

Yes

No

description bundle not set

PresenceConnectionsLimit

int

2

Min=0, Max=10

Yes

No

description bundle not set


BdkService.SoapProperties

The following properties are available for BdkService.SoapProperties:

Table 4-16 BdkService.SoapProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DebugMode

boolean

false

All permitted values

Yes

No

description bundle not set

MaxRequestSize

int

102400

This property has a customized constraint.

Yes

No

description bundle not set


BeeCentralService

The following properties are available for BeeCentralService:

Table 4-17 BeeCentralService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

Dial8HintLocaleStrings

Map<String,String>

n/a

All permitted values

Yes

No

Customizable explanation that describes the correct phone number format for the voice mail transfer option.

EnableDownloadCenter

boolean

true

All permitted values

Yes

No

When set to TRUE, the Download Center is rendered in BeeCentral UI. When set to FALSE, the Download Center is hidden.

HelpLink

String

http://www.oracle.com/technology/products/beehive/beehive_users/2_0/central.htm

All permitted values

Yes

No

A configurable link to help text for Beehive clients.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SmsOptInHintLocaleStrings

Map<String,String>

n/a

All permitted values

Yes

No

Customizable explanation about the delivery of SMS notifications to mobile devices.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


BeehiveConferencingService

The following properties are available for BeehiveConferencingService:

Table 4-18 BeehiveConferencingService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ConfJavaDeployJavaURL

String

//www.java.com/js/deployJava.js

All permitted values

Yes

No

Parameter to set the deployJava.js URL to be used for launching javafx client. The default value for this parameter will be "//www.java.com/js/deployJava.js", which is fetched from the external java site. For intranet deplopyment of confctr, the value must be "DMS://deployJava.js", which will fetch the deployjava.js file from the internal package in DMS.

ConfJavaJNLP

String

confjavafx.jnlp.template

All permitted values

Yes

No

Parameter to set the jnlp template to be used for javafx. The default value for this parameter will be "confjavafx.jnlp.template". which has javafx runtime jars fetched from external java site. For intranet deplopyment of confctr, the value must be "confjavafx.intranet.jnlp.template", which will fetch the required runtime files from the internal package in DMS.

ConferenceClientDownloadLocationMac

String

n/a

All permitted values

Yes

No

Set the Conference Client download location for Macintosh. The default value for this parameter will be null. If it is null, then the URL for conference client will be fetched through Beehive Central.

ConferenceClientDownloadLocationWin

String

n/a

All permitted values

Yes

No

Set the Conference Client download location for Windows. The default value for this parameter will be null. If it is null, then the URL for conference client will be fetched through Beehive Central.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

EnableDownloadCenter

boolean

true

All permitted values

Yes

No

When set to TRUE, the Download Center is rendered in WebConference UI. When set to FALSE, the Download Center is hidden.

HelpLink

String

http://www.oracle.com/technology/products/beehive/beehive_users/2_0/conferencing.htm

All permitted values

Yes

No

A configurable link to help text for Beehive clients.

JREDownloadURL

String

http://www.java.com

All permitted values

Yes

No

URL for downloading the Java Runtime Environment (JRE) required to launch the JavaFX client. Default URL http://www.java.com downloads the latest JRE.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


BeehiveInstance

The following properties are available for BeehiveInstance:

Table 4-19 BeehiveInstance Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AvailableNumberOfProcessors

int

1

This property has a customized constraint.

Yes

No

The number of processors committed for the current Oracle Beehive instance. This figure is used by the sizing algorithm to calculate the number of server and client Beehive Transport Infrastructure (BTI) workers, as well as the Oracle Containers for Java (OC4J) instances, required to support the current Oracle Beehive instance.

AvailablePhysicalMemoryInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The amount of physical memory in megabytes (MBs) committed for the current Oracle Beehive instance. This figure is used by the sizing algorithm to calculate the number of Oracle Containers for Java (OC4J) instances required for the current Oracle Beehive instance.

BeehiveInstanceName

String

n/a

All permitted values

Yes

Yes

The name of the current Oracle Beehive instance.

Bti

Bti

n/a

All permitted values

Yes

No

The Oracle Beehive Transport Infrastructure (BTI) associated with the current Oracle Beehive instance.

DiagnosabilitySettings

DiagnosabilitySettings

n/a

All permitted values

Yes

No

A reference to a SystemObject that holds the properties used to configure diagnosability functionality. You do not directly modify the value of this property. You modify the properties of the referenced DiagnosabilitySettings object.

HttpServer

HttpServer

n/a

All permitted values

Yes

No

A reference to the HttpServer SystemObject for the current Oracle Beehive instance. You do not directly modify the value of this property. You configure the HTTP Server by modifying the properties of the referenced HttpServer object.

KeystoreFile

File

n/a

All permitted values

Yes

No

Path of the keystore file associated with the current Oracle Beehive instance.

KeystoreFilePassword

SecureString

n/a

All permitted values

Yes

No

Password for the keystore file associated with the current Oracle Beehive Instance.

LogBaseDir

File

beehive/logs

All permitted values

Yes

No

The base directory where Oracle Beehive will store its log files.

Oc4jInstances

Set<ManagedOc4j> (Structural property)

n/a

All permitted values

Yes

No

The set of references to the SystemObjects that configure the OC4J instances deployed in the current Oracle Beehive instance. The system automatically manages the value of this property. You must never directly modify the value.

Opmn

Opmn

n/a

All permitted values

No

No

This is a reference to the SystemObject that configures OPMN for the current Oracle Beehive instance. The system automatically manages the value of this property. You must never directly modify the value.

OracleHome

String

n/a

All permitted values

No

Yes

The Oracle home for the current Oracle Beehive instance.

Server

Server

n/a

All permitted values

No

No

This is a reference to the SystemObject that represents the Server associated with the current Oracle Beehive instance. The system automatically manages the value of this property.

WalletDir

String

n/a

All permitted values

Yes

No

Directory path of the Oracle Wallet associated with the current Oracle Beehive instance.

WalletPassword

SecureString

n/a

All permitted values

Yes

No

The password for the Oracle Wallet associated with the current Oracle Beehive instance.


BeehiveJ2eeApplication

No other properties exist for BeehiveJ2eeApplication .

BeekeeperService

The following properties are available for BeekeeperService:

Table 4-20 BeekeeperService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalLis

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


Bti

The following properties are available for Bti:

Table 4-21 Bti Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BeehiveInstance

BeehiveInstance

n/a

All permitted values

Yes

No

long description key not set

BtiProcessPingTimeout

int

60

All permitted values

Yes

No

Timeout for pings between btimon and BTI native processes. When this timeout is exceeded the native BTI processes is restarted.

ClientWorker

BtiClientWorker

n/a

All permitted values

No

No

long description key not set

CtrlPort

int

5959

Network Port, Min=1, Max=65536

Yes

No

TCP port for internal communications between components of BTI. This port is also used by opmn for pinging BTI.

LogDir

String

n/a

All permitted values

Yes

No

Log directory for all BTI components

Redirector

BtiRedirector

n/a

All permitted values

No

No

long description key not set

ServerPort

int

n/a

Network Port, Min=1, Max=65536

Yes

No

TCP port for communications between midtiers via OMB.

ServerWorker

BtiServerWorker

n/a

All permitted values

No

No

long description key not set

StartJavaExecutionArguments

JavaExecutionArguments

n/a

All permitted values

Yes

No

Arguments for the Java Virtual Machine when starting this component

StopJavaExecutionArguments

JavaExecutionArguments

n/a

All permitted values

Yes

No

Arguments for the Java Virtual Machine when starting this component


BtiClientWorker

The following properties are available for BtiClientWorker:

Table 4-22 BtiClientWorker Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdditionalExecArgs

String[]

n/a

All permitted values

Yes

No

Additional command line arguments to be passed to the BTI native process.

Bti

Bti

n/a

All permitted values

Yes

No

long description key not set

NumberOfWorkers

int

1

All permitted values

Yes

No

Number of MX processes in each BTI instance (midtier or DMZ).


BtiComponent

The following properties are available for BtiComponent:

Table 4-23 BtiComponent Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdditionalExecArgs

String[]

n/a

All permitted values

Yes

No

Additional command line arguments to be passed to the BTI native process.


BtiGlobal

The following properties are available for BtiGlobal:

Table 4-24 BtiGlobal Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BackendSecurityMode

BtiGlobal.SecurityMode (Legal values: NONE, AUTH_ONLY, AUTH_AND_ENCRYPT)

NONE

All permitted values

Yes

No

description bundle not set

ClientPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

description bundle not set

SecureClientPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

description bundle not set


BtiRedirector

The following properties are available for BtiRedirector:

Table 4-25 BtiRedirector Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdditionalExecArgs

String[]

n/a

All permitted values

Yes

No

Additional command line arguments to be passed to the BTI native process.

Bti

Bti

n/a

All permitted values

Yes

No

description bundle not set


BtiServerWorker

The following properties are available for BtiServerWorker:

Table 4-26 BtiServerWorker Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdditionalExecArgs

String[]

n/a

All permitted values

Yes

No

Additional command line arguments to be passed to the BTI native process.

Bti

Bti

n/a

All permitted values

Yes

No

long description key not set

NumberOfWorkers

int

1

All permitted values

Yes

No

Number of BP processes in each midtier.


CalDAVService

The following properties are available for CalDAVService:

Table 4-27 CalDAVService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CollectionBrowsingEnabled

Boolean

true

All permitted values

Yes

No

Enables or disables the Oracle Beehive CalDAV Companion Web Access interface. If disabled, trying to access a CalDAV URL in a Web browser will return an error.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DefaultFutureTimePeriodInDay

Long

124

Min=0, Max=10950

Yes

No

The upper limit (in days) of the range for which date-based entities will be returned by Oracle Beehive if no range is explicitly provided by a CalDAV client. This value is represented as a positive integer. Oracle Beehive uses this value to determine whether or not to return certain date-based entities. For example, if this value is set to 30 and no time range is supplied by a CalDAV client, Oracle Beehive will return all date-based entities, such as meetings and tasks, that occur between today and the next 30 days. In this example, entities that occur on the 31st day from today and beyond will not be returned.

DefaultPastTimePeriodInDay

Long

31

Min=0, Max=10950

Yes

No

The lower limit (in days) of the range for which date-based entities will be returned by Oracle Beehive if no range is explicitly provided by a CalDAV client. This value is represented as a negative integer. Oracle Beehive uses this value to determine whether or not to return certain date-based entities. For example, if this value is set to -30 and no time range is supplied by a CalDAV client, Oracle Beehive will return all date-based entities, such as meetings and tasks, that occurred in the the previous 30 days only. In this example, entities that occurred on the 31st day prior to today and earlier will not be returned.

ISchedule

CalDAVService.ISchedule

n/a

All permitted values

No

No

The iSchedule service can be confifured using all the properties defined in this system object.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


CalDAVService.ISchedule

The following properties are available for CalDAVService.ISchedule:

Table 4-28 CalDAVService.ISchedule Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Enabled

Boolean

true

All permitted values

Yes

No

Enables or disables the Oracle Beehive iSchedule service.

NoProxyFor

List<String>

n/a

All permitted values

Yes

No

Specifies the list of hosts and ip addresses for which the proxy should not be used. Each entry can be either a complete host name (e.g. "www.oracle.com"), a domain name beginning with a dot (e.g. ".oracle.com"), an IP address (e.g. "12.34.56.78"), an IP subnet, specified as an IP address and a netmask separated by a "/" (e.g. "34.56.78/255.255.255.192").

ProxyAuthId

String

n/a

All permitted values

Yes

No

Specifies the authentication name to use if the proxy requires authentication.

ProxyAuthKey

SecureString

n/a

All permitted values

Yes

No

Specifies the key to use if the proxy requires authentication.

ProxyHost

String

n/a

All permitted values

Yes

No

Specifies a proxy hostname to use when the iSchedule service connects to remote iSchedule receivers.

ProxyPort

Integer

80

All permitted values

Yes

No

Specifies a proxy port to use when the iSchedule service connects to remote iSchedule receivers.

ProxyType

CalDAVService.ISchedule.IScheduleProxyType (Legal values: HTTP, SOCKS4, SOCKS5)

HTTP

All permitted values

Yes

No

Specifies the iSchedule proxy type, can be either HTTP, SOCKS4 or SOCKS5.

Servers

List<Server> (Structural property)

n/a

This property has a customized constraint.

Yes

No

Specifies the list of configured remote iSchedule servers


CalDAVService.ISchedule.Server

The following properties are available for CalDAVService.ISchedule.Server:

Table 4-29 CalDAVService.ISchedule.Server Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DomainRegexp

String

n/a

This property has a customized constraint.

Yes

No

The iSchedule server domain regular expression is used for associating external email addresses to this iSchedule server configuration.

IncomingAllowHostRegexp

String

n/a

This property has a customized constraint.

Yes

No

Regular expression of allowed host names. Remote servers not matching this regular expression will not be able to send requests to the local server.

ncomingAllowIPRegexp

String

n/a

This property has a customized constraint.

Yes

No

Regular expression of allowed IP addresses. Remote servers not matching this regular expression will not be able to send requests to the local server.

IncomingAuthId

String

n/a

This property has a customized constraint.

Yes

No

Specifies the name the remote server should use. If the remote server does not specify the good name, all requests sent from this remote server will be denied

IncomingAuthKey

SecureString

n/a

All permitted values

Yes

No

Specifies the key the remote server should use. If the remote server does not specify the good key, all requests sent from this remote server will be denied

IncomingAuthMethod

CalDAVService.ISchedule.Server.AuthMethod (Legal values: HTTP_BASIC)

HTTP_BASIC

All permitted values

Yes

No

Authentication method to use for incoming remote server requests.

Name

String

n/a

This property has a customized constraint.

No

No

The iSchedule server name is used to uniquely identify an iSchedule server configuration.

OutgoingAuthId

String

n/a

This property has a customized constraint.

Yes

No

Specifies the name to use when authenticating to the remote server.

OutgoingAuthKey

SecureString

n/a

All permitted values

Yes

No

Specifies key to use when authenticating to the remote server.

OutgoingUrl

String

n/a

This property has a customized constraint.

Yes

No

The iSchedule server outgoing URL is used to specify the remote iSchedule receiver URL for this iSchedule server configuration.


ClientManagementService

The following properties are available for ClientManagementService:

Table 4-30 ClientManagementService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DebugMode

boolean

false

All permitted values

Yes

No

description bundle not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

NotificationQueueResumeThreshold

int

50

This property has a customized constraint.

Yes

No

description bundle not set

NotificationQueueSuspendThreshold

int

100

This property has a customized constraint.

Yes

No

description bundle not set

OutputFrameSize

int

32768

Min=1, Max=65535

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SessionTimeout

int

30000

This property has a customized constraint.

Yes

No

description bundle not set

StreamReadBufferSize

int

131072

This property has a customized constraint.

Yes

No

description bundle not set

StreamWriteBufferSize

int

131072

This property has a customized constraint.

Yes

No

description bundle not set

TraceEnabled

boolean

false

All permitted values

Yes

No

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


CoexistenceService

The following properties are available for CoexistenceService:

Table 4-31 CoexistenceService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CoexistenceEnabled

boolean

true

All permitted values

Yes

No

Enables or disables the Coexistence Service. If enabled and a coexistence connector is configured, the Coexistence Service will send and receive requests to and from the coexistence connector.

ConnectorProperties

CoexistenceService.ConnectorProperties

n/a

All permitted values

No

No

Properties that are specific to the Oracle Coexistence Connector. This is a subcomponent.

ContactProperties

CoexistenceService.ContactProperties

n/a

All permitted values

No

No

Properties that are specific to contacts in coexistence deployments. This is a subcomponent.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

FreeBusyProperties

CoexistenceService.FreeBusyProperties

n/a

All permitted values

No

No

Properties that are specific to free/busy time in coexistence deployments. This is a subcomponent.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MeetingProperties

CoexistenceService.MeetingProperties

n/a

All permitted values

No

No

Properties that are specific to meetings in coexistence deployments. This is a subcomponent.

MessageProperties

CoexistenceService.MessageProperties

n/a

All permitted values

No

No

Properties that are specific to e-mail messages in coexistence deployments. This is a subcomponent.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RequestSenderEnabled

boolean

true

All permitted values

Yes

No

Enables or disables the request sender. If disabled, the Coexistence Service will not send any requests to the connector but will still process incoming requests. Propagation of changes also requires the CoexistenceEnabled property to be enabled. When disabled, the Coexistence Service will only process requests sent by the coexistence connector.

TaskProperties

CoexistenceService.TaskProperties

n/a

All permitted values

No

No

Properties that are specific to tasks in coexistence deployments. This is a subcomponent.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


CoexistenceService.ClusteredTaskProperties

No other properties exist for CoexistenceService.ClusteredTaskProperties .

CoexistenceService.ConnectorProperties

The following properties are available for CoexistenceService.ConnectorProperties:

Table 4-32 CoexistenceService.ConnectorProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SmtpServerHostName

String

n/a

All permitted values

Yes

No

Specifies the SMTP server host name used by the Oracle Coexistence Connector. If this property is not set, the virtual server name will be used.

SmtpServerPort

int

25

This property has a customized constraint.

Yes

No

Specifies the SMTP server port used by the Oracle Coexistence Connector. If this property is not set, the virtual server port will be used.


CoexistenceService.ContactProperties

The following properties are available for CoexistenceService.ContactProperties:

Table 4-33 CoexistenceService.ContactProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment. If an attachment is larger than this size, the attachment is ignored by the coexistence solution. Increasing this value can cause scalability issues in some flows. It is not recommended to increase this value above 10240. The recommended value is 2048.


CoexistenceService.ContainerSpecificProperties

The following properties are available for CoexistenceService.ContainerSpecificProperties:

Table 4-34 CoexistenceService.ContainerSpecificProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment. If an attachment is larger than this size, the attachment is ignored by the coexistence solution. Increasing this value can cause scalability issues in some flows. It is not recommended to increase this value above 10240. The recommended value is 2048.


CoexistenceService.DominoProperties

The following properties are available for CoexistenceService.DominoProperties:

Table 4-35 CoexistenceService.DominoProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SmtpServerHostName

String

n/a

All permitted values

Yes

No

Specifies the SMTP server host name used by the Oracle Coexistence Connector. If this property is not set, the virtual server name will be used.

SmtpServerPort

int

25

This property has a customized constraint.

Yes

No

Specifies the SMTP server port used by the Oracle Coexistence Connector. If this property is not set, the virtual server port will be used.


CoexistenceService.ExchangeProperties

The following properties are available for CoexistenceService.ExchangeProperties:

Table 4-36 CoexistenceService.ExchangeProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SmtpServerHostName

String

n/a

All permitted values

Yes

No

Specifies the SMTP server host name used by the Oracle Coexistence Connector. If this property is not set, the virtual server name will be used.

SmtpServerPort

int

25

This property has a customized constraint.

Yes

No

Specifies the SMTP server port used by the Oracle Coexistence Connector. If this property is not set, the virtual server port will be used.


CoexistenceService.ExpertiseProfilingProperties

The following properties are available for CoexistenceService.ExpertiseProfilingProperties:

Table 4-37 CoexistenceService.ExpertiseProfilingProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment for expertise profiling. If an attachment is larger than this size, the attachment is ignored by the coexistence solution.


CoexistenceService.FreeBusyProperties

The following properties are available for CoexistenceService.FreeBusyProperties:

Table 4-38 CoexistenceService.FreeBusyProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

FutureTimePeriodInDay

int

120

This property has a customized constraint.

Yes

No

Specifies the upper limit (in days from today) of the range Oracle Beehive will use to publish free/busy information of coexisting users. This value can be any positive integer. For example, if this value is set to 60, Oracle Beehive will publish all free/busy information that occurs from the time of the request and for the following 60 days. This property is used in conjunction with PastTimePeriodInDay, which specifies the lower limit (in days) of the range for publishing free/busy information.

PastTimePeriodInDay

int

7

This property has a customized constraint.

Yes

No

Specifies the lower limit (in days from today) of the range Oracle Beehive will use to publish free/busy information of coexisting Oracle Beehive users. This value can be any positive integer. For example, if this value is set to 30, Oracle Beehive will publish all free/busy information that occurs from the time of the request and for the previous 30 days. This property is used in conjunction with FutureTimePeriodInDay, which specifies the upper limit (in days) of the range for publishing free/busy information.


CoexistenceService.InstanceTaskProperties

No other properties exist for CoexistenceService.InstanceTaskProperties .

CoexistenceService.MeetingProperties

The following properties are available for CoexistenceService.MeetingProperties:

Table 4-39 CoexistenceService.MeetingProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment. If an attachment is larger than this size, the attachment is ignored by the coexistence solution. Increasing this value can cause scalability issues in some flows. It is not recommended to increase this value above 10240. The recommended value is 2048.

ImportDataFutureTimePeriodInDay

int

-1

All permitted values

Yes

No

Specifies the upper limit (in days from today) of the range Oracle Beehive will use to request an initial import of meeting data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no upper limit. For example, if this value is set to 60, Oracle Beehive will import all meeting data that occurs from the time of the import and for the following 60 days. This property is used in conjunction with ImportDataPastTimePeriodInDay, which specifies the lower limit (in days) of the range for importing meeting data.

ImportDataPastTimePeriodInDay

int

30

All permitted values

Yes

No

Specifies the lower limit (in days from today) of the range Oracle Beehive will use to request an initial import of meeting data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no lower limit. For example, if this value is set to 30, Oracle Beehive will import all meeting data that occurs from the time of the request and for the previous 30 days. This property is used in conjunction with ImportDataFutureTimePeriodInDay, which specifies the upper limit (in days) of the range for importing meeting data.


CoexistenceService.MessageProperties

The following properties are available for CoexistenceService.MessageProperties:

Table 4-40 CoexistenceService.MessageProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment. If an attachment is larger than this size, the attachment is ignored by the coexistence solution. Increasing this value can cause scalability issues in some flows. It is not recommended to increase this value above 10240. The recommended value is 2048.

ImportDataFutureTimePeriodInDay

int

-1

All permitted values

Yes

No

Specifies the upper limit (in days from today) of the range Oracle Beehive will use to request an initial import of e-mail data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no upper limit. For example, if this value is set to 60, Oracle Beehive will import all e-mail data that occurs from the time of the import and for the following 60 days. This property is used in conjunction with ImportDataPastTimePeriodInDay, which specifies the lower limit (in days) of the range for importing e-mail data.

ImportDataPastTimePeriodInDay

int

30

All permitted values

Yes

No

Specifies the lower limit (in days from today) of the range Oracle Beehive will use to request an initial import of e-mail data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no lower limit. For example, if this value is set to 30, Oracle Beehive will import all e-mail data that occurs from the time of the request and for the previous 30 days. This property is used in conjunction with ImportDataFutureTimePeriodInDay, which specifies the upper limit (in days) of the range for importing e-mail data.


CoexistenceService.ServiceManagerProperties

No other properties exist for CoexistenceService.ServiceManagerProperties .

CoexistenceService.TaskProperties

The following properties are available for CoexistenceService.TaskProperties:

Table 4-41 CoexistenceService.TaskProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMaxSizeInKiloByte

int

2048

This property has a customized constraint.

Yes

No

The maximum size allowed (in kilobytes) of an attachment. If an attachment is larger than this size, the attachment is ignored by the coexistence solution. Increasing this value can cause scalability issues in some flows. It is not recommended to increase this value above 10240. The recommended value is 2048.

ImportDataFutureTimePeriodInDay

int

-1

All permitted values

Yes

No

Specifies the upper limit (in days from today) of the range Oracle Beehive will use to request an initial import of task data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no upper limit. For example, if this value is set to 60, Oracle Beehive will import all active task data from the time of the import and for the following 60 days. This property is used in conjunction with ImportDataPastTimePeriodInDay, which specifies the lower limit (in days) of the range for importing task data.

ImportDataPastTimePeriodInDay

int

30

All permitted values

Yes

No

Specifies the lower limit (in days from today) of the range Oracle Beehive will use to request an initial import of task data from the Oracle Coexistence Connector. This value can be any positive integer or -1, which is used to specify that there is no lower limit. For example, if this value is set to 30, Oracle Beehive will import all active task data from the time of the request and for the previous 30 days. This property is used in conjunction with ImportDataFutureTimePeriodInDay, which specifies the upper limit (in days) of the range for importing task data.


CompositeStateManageable

No other properties exist for CompositeStateManageable .

ConferenceMonitoringService

The following properties are available for ConferenceMonitoringService:

Table 4-42 ConferenceMonitoringService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ClientConnectInfo

String

n/a

All permitted values

Yes

Yes

description bundle not set

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ConferenceService

The following properties are available for ConferenceService:

Table 4-43 ConferenceService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DefaultDialoutCallTimeout

Integer

3600000

All permitted values

No

No

description bundle not set

DefaultParticipantCodec

String

audio/IP-MR-VBR

All permitted values

Yes

No

description bundle not set

DefaultSipRegistrationExpiresInterval

Integer

3600

All permitted values

No

No

description bundle not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

OwcHostWaitSessionTimeout

Integer

1800000

All permitted values

No

No

description bundle not set

OwcLogFlushPeriod

Integer

30000

All permitted values

Yes

No

description bundle not set

OwcMediaHostServiceBusAddressPrefix

String

owc-ms-host-service

All permitted values

Yes

No

description bundle not set

OwcMediaHostServiceLoadBalanceBusAddressSuffix

String

balance

All permitted values

Yes

No

description bundle not set

OwcRosterServiceBusAddressPrefix

String

owc-roster-service

All permitted values

Yes

No

description bundle not set

OwcRosterServiceLoadBalanceBusAddressSuffix

String

balance

All permitted values

Yes

No

description bundle not set

OwcUseRemoteMediaSessions

Boolean

false

All permitted values

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SIPPSTNGatewayIPAddres

String

n/a

All permitted values

Yes

No

description bundle not set

SIPPSTNGatewayPort

Integer

5060

Network Port, Min=1, Max=65536

Yes

No

description bundle not set

SipRegistrationEnabled

Boolean

false

All permitted values

Yes

No

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ConferenceSessionService

The following properties are available for ConferenceSessionService:

Table 4-44 ConferenceSessionService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ConnectionPoolConsumer

No other properties exist for ConnectionPoolConsumer .

CustomService

The following properties are available for CustomService:

Table 4-45 CustomService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


Database

The following properties are available for Database:

Table 4-46 Database Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AccessSchemas

List<AccessSchema> (Structural property)

n/a

All permitted values

Yes

No

The database access Schemas.

AffinityPool

Database.AffinityPool

n/a

All permitted values

Yes

Yes

The affinity ConnectionPool.

AffinityServiceNames

List<String>

n/a

All permitted values

Yes

No

The list of services that require database affinity.

BusinessDataServiceName

String

n/a

All permitted values

Yes

No

The database name for business data service.

ConfigServiceName

String

n/a

All permitted values

Yes

No

The database name for configuration store.

ConnectDescriptor

String

n/a

All permitted values

Yes

No

The connect descriptor for the database.

DefaultAccessSchema

Database.AccessSchema

n/a

All permitted values

Yes

Yes

The database access Schema.

DefaultNonXaPool

Database.ConnectionPool

n/a

All permitted values

Yes

Yes

The default non-XA connectionPool.

DefaultXaPool

Database.ConnectionPool

n/a

All permitted values

Yes

Yes

The default XA connectionPool.

DiagnosabilityServiceName

String

n/a

All permitted values

Yes

No

The database name for diagnosibility service.

EventListenerServiceName

String

n/a

All permitted values

Yes

No

The database name for event listener service.

OnsNodeConfiguration

List<String>

n/a

All permitted values

Yes

No

The list of ONS node configuration.

ParentDatabase

Database

n/a

All permitted values

No

Yes

long description key not set

ReadOnlyBusinessDataServiceName

String

n/a

All permitted values

Yes

No

The database name for read-only business data service.

SearchServiceName

String

n/a

All permitted values

Yes

No

The database name for search service.


Database.AccessSchema

The following properties are available for Database.AccessSchema:

Table 4-47 Database.AccessSchema Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BusinessDataSupported

boolean

false

All permitted values

Yes

No

If business data is supported.

ConfigDataSupported

boolean

false

All permitted values

Yes

No

If configuration data is supported.

DiagnosticDataSupported

boolean

false

All permitted values

Yes

No

If Diagnostic data is supported.

EventListenerDataSupported

boolean

false

All permitted values

Yes

No

If event data is supported.

Password

SecureString

n/a

All permitted values

Yes

No

The password of the access schema.

ReadOnlyBusinessDataBaseSupported

boolean

false

All permitted values

Yes

No

If read only DB is supported.

SearchDataSupported

boolean

false

All permitted values

Yes

No

If search data is supported.

UserDataSupported

boolean

false

All permitted values

Yes

No

If user data is supported.

UserName

String

BEE_CODE

All permitted values

Yes

No

The username of the access schema.


Database.AffinityPool

The following properties are available for Database.AffinityPool:

Table 4-48 Database.AffinityPool Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AbandonedConnectionTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for abandoned connection.

ConnectTimeout

int

10000

Min=1, Max=2147483647

Yes

No

The limit of the maximum retry attempt.

ConnectionProperties

Map<String,String>

n/a

All permitted values

Yes

No

Time out for establishing a DB Connection.

ConnectionWaitTimeout

int

300

Min=0, Max=2147483647

Yes

No

The timeout for connection wait.

InactivityTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for inactive connection.

InitialConnections

int

0

Min=0, Max=2147483647

Yes

No

The initial connection count of this connection pool.

LowerThresholdLimit

int

20

Min=0, Max=100

Yes

No

The limit of LowerThreshold.

MaxConnections

int

20

Min=0, Max=2147483647

Yes

No

The maximum connection count of this connection pool.

MaxRetryAttemptLimit

int

3

Min=0, Max=2147483647

Yes

No

The limit of the maximum retry attempt.

MaxRetryTimeLimit

int

30000

Min=0, Max=2147483647

Yes

No

The limit of the maximum retry time.

MaxStatementsLimit

int

0

Min=0, Max=2147483647

Yes

No

The maxium statement count of this connection pool.

MinConnections

int

0

Min=0, Max=2147483647

Yes

No

The minimum connection count of this connection pool.

PropertyCheckInterval

int

900

Min=1, Max=2147483647

Yes

No

The interval to check property.

ReadTimeout

int

300000

Min=1, Max=2147483647

Yes

No

Time out for Read operation.

ServiceStatusCheckInterval

int

60

Min=1, Max=2147483647

Yes

No

Time interval (in seconds) between two consecutive affinity service status checks.

StatusChangeErrorThreshold

int

30

Min=1, Max=2147483647

Yes

No

While fetching the DB Connections, Number of consecutive SQLException exception tolerate before updating the affinity service status as down.

TimeToLiveTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for timeToLive.

ValidateConnection

boolean

false

All permitted values

Yes

No

If the connectionPool needs to validate a connection.


Database.ConnectionPool

The following properties are available for Database.ConnectionPool:

Table 4-49 Database.ConnectionPool Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AbandonedConnectionTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for abandoned connection.

ConnectTimeout

int

10000

Min=1, Max=2147483647

Yes

No

The limit of the maximum retry attempt.

ConnectionProperties

Map<String,String>

n/a

All permitted values

Yes

No

Time out for establishing a DB Connection.

ConnectionWaitTimeout

int

300

Min=0, Max=2147483647

Yes

No

The timeout for connection wait.

InactivityTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for inactive connection.

InitialConnections

int

0

Min=0, Max=2147483647

Yes

No

The initial connection count of this connection pool.

LowerThresholdLimit

int

20

Min=0, Max=100

Yes

No

The limit of LowerThreshold.

MaxConnections

int

20

Min=0, Max=2147483647

Yes

No

The maximum connection count of this connection pool.

MaxRetryAttemptLimit

int

3

Min=0, Max=2147483647

Yes

No

The limit of the maximum retry attempt.

MaxRetryTimeLimit

int

30000

Min=0, Max=2147483647

Yes

No

The limit of the maximum retry time.

MaxStatementsLimit

int

0

Min=0, Max=2147483647

Yes

No

The maxium statement count of this connection pool.

MinConnections

int

0

Min=0, Max=2147483647

Yes

No

The minimum connection count of this connection pool.

PropertyCheckInterval

int

900

Min=1, Max=2147483647

Yes

No

The interval to check property.

ReadTimeout

int

300000

Min=1, Max=2147483647

Yes

No

Time out for Read operation.

TimeToLiveTimeout

int

0

Min=0, Max=2147483647

Yes

No

The timeout for timeToLive.

ValidateConnection

boolean

false

All permitted values

Yes

No

If the connectionPool needs to validate a connection.


DeletedSystemObject

No other properties exist for DeletedSystemObject .

DeviceManagementService

The following properties are available for DeviceManagementService:

Table 4-50 DeviceManagementService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BlockedDevices

Collection<BlockedDevice> (Structural property)

n/a

All permitted values

Yes

No

The list of devices that will not be allowed to access Oracle Beehive services.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UncertifiedDeviceAllowed

Boolean

false

All permitted values

Yes

No

Whether or not Oracle Beehive will allow uncertified devices to access the system.


DeviceManagementService.BlockedDevice

The following properties are available for DeviceManagementService.BlockedDevice:

Table 4-51 DeviceManagementService.BlockedDevice Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Description

String

n/a

All permitted values

Yes

No

Description as to why this device is blocked.

DeviceId

String

n/a

All permitted values

Yes

No

A unique identifier of the device.


DiagnosabilitySettings

The following properties are available for DiagnosabilitySettings:

Table 4-52 DiagnosabilitySettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BaseErrorCodeProperties

DiagnosabilitySettings.ErrorCodeProperties

n/a

All permitted values

Yes

Yes

The default properties used by Error Code DB Persistence and Error Code log records

ContextProperties

DiagnosabilitySettings.ContextProperties

n/a

All permitted values

Yes

Yes

Subobject with properties for the Diagnosability Context

ErrorCodeDBPersistenceEnabled

Boolean

false

All permitted values

Yes

No

When enabled, some error code occurrences will be persisted to the database, based on the the values of the sub-objects BaseErrorCodeProperties and ErrorCodeDBProperties.

ErrorCodeDBProperties

DiagnosabilitySettings.ErrorCodeProperties

n/a

All permitted values

Yes

No

If exists, this object overrides the values in BaseErrorCodeProperties for Error Code Database persistence.

ErrorCodeLoggingProperties

DiagnosabilitySettings.ErrorCodeProperties

n/a

All permitted values

Yes

No

If exists, this object overrides the values in BaseErrorCodeProperties for Error Code log records.

ProbeEnabled

Boolean

false

All permitted values

Yes

No

Enable the instrumentation of requests with the diagnosability probe.

ProbeProperties

DiagnosabilitySettings.ProbeProperties

n/a

All permitted values

Yes

Yes

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_CFG_PROBE_PROPS_LONG


DiagnosabilitySettings.ContextProperties

The following properties are available for DiagnosabilitySettings.ContextProperties:

Table 4-53 DiagnosabilitySettings.ContextProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

IncludeCallerStacks

Boolean

false

All permitted values

Yes

No

If enabled, Stack traces within each service will be propagated to any callee services

PropagationEnabled

Boolean

true

All permitted values

Yes

No

Enable Diagnosability Context propagation. If disabled, ECID, service instance stacks, and caller stacks will not be propagated over CSI calls or to the Database.


DiagnosabilitySettings.ErrorCodeProperties

The following properties are available for DiagnosabilitySettings.ErrorCodeProperties:

Table 4-54 DiagnosabilitySettings.ErrorCodeProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ExcludedErrorCodes

List<String>

n/a

All permitted values

Yes

No

If set, none of these error codes listed will be reported, in conjunction with ReportingSeverityThreshold. This property and IncludedErrorCodes cannot be set at the same time.

IncludeStackTraces

Boolean

false

All permitted values

Yes

No

If enabled, stack traces will be included with each reported Error Code occurrence.

IncludedErrorCodes

List<String>

n/a

All permitted values

Yes

No

If set, only the list of error codes here will be persisted. It is not recommended that this property be set. This property and ExcludedErrorCodes cannot be used at the same time.

LoggingSeverity

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

FINER

All permitted values

Yes

No

All error codes reported to log files, will be written at this severity level. This property is ignored by Error Code database persistence.

ReportingSeverityThreshold

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

INFO

All permitted values

Yes

No

Minimum Error Code severity required to report an Error Code occurrence, to the applicable persistence type

UploadInterval

int

30

This property has a customized constraint.

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_CFG_EC_UPLOAD_INTERVAL_LONG


DiagnosabilitySettings.ProbeProperties

The following properties are available for DiagnosabilitySettings.ProbeProperties:

Table 4-55 DiagnosabilitySettings.ProbeProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

LightWeightEnabled

boolean

true

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_PROBE_LW_LONG

MaxSize

int

10485760

This property has a customized constraint.

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_PROBE_MAX_SIZE_LONG

PersistenceInterval

int

60

This property has a customized constraint.

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_PROBE_PERSISTENCE_INTERVAL_LONG

StorageLocation

String

n/a

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key DIA_PROBE_STORAGE_LOC_LONG


DiscussionsService

The following properties are available for DiscussionsService:

Table 4-56 DiscussionsService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


EmailService

The following properties are available for EmailService:

Table 4-57 EmailService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CSIProperties

EmailService.CSIProperties

n/a

All permitted values

No

Yes

A group of properties associated with Email CSI interface implementation behavior. Email CSI performance and memory footprint can be tuned via these properties.

CoexUserLocal

boolean

false

All permitted values

Yes

No

If true, Coexisting users (sometimes referred to as users with a remote Inbox) will have their email forwarded to another server via the routing rules of the system. If false, the property indicating that the Inbox is remote is ignored.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DirectoryCacheTTL

long

60000

Min=0, Max=9223372036854775807

Yes

No

Maximum time (in milliseconds) that an address will remain cached within the server. Note that this becomes the maximum time for a change to a users information (email address) or a group membership before changes are seen.

GlobalDomainName

String

default

All permitted values

Yes

No

The domain name used throughout the system. Note: This value may be overridden in certain parts of the system.

IMAPEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not Oracle Beehive's native Internet Message Access Protocol (IMAP) services are enabled. Valid values: true, false

IMAPProperties

EmailService.IMAPProperties

n/a

All permitted values

No

Yes

A group of properties associated with the IMAP server component. IMAP server is responsible for serving user requests to read and manage emails in their mailboxes.

LocalEmailPatterns

List<String>

n/a

All permitted values

Yes

No

The list of valid e-mail address patterns for users of the system

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxDirectoryCacheEntries

int

8192

Min=0, Max=2147483647

Yes

No

The maximum number of resolved e-mail addresses that the system will cache in memory

MaxMailSz

long

50000000

Min=0, Max=9223372036854775807

Yes

No

The maximum size of an e-mail allowed by the system. The system will reject e-mail messages that exceed this threshold. Note this value is invlusive of the entire message (headers, attachments, etc).

NonLocalEmailPatterns

List<String>

n/a

All permitted values

Yes

No

The list of valid e-mail address patterns to which the system will forward e-mail messages. Typically, this property is used to specify patterns for e-mail addresses that are hosted on other systems.

PersistenceProperties

EmailService.PersistenceProperties

n/a

All permitted values

No

Yes

A group of properties associated with email service persistence cache. Persistence cache is responsible for managing email message content cache in the middle tier.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SMTPEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not Oracle Beehive's native Simple Mail Transport Protocol (SMTP) service is enabled. Valid values: true, false

SMTPProperties

EmailService.SMTPProperties

n/a

All permitted values

No

Yes

A group of properties associated with SMTP server component. SMTP server is responsible for accepting email traffic from remote hosts and commit delivering responsibility for email messages.

SaveParseErrorEmails

boolean

false

All permitted values

Yes

No

Specifies whether or not the system will save e-mail messages that it cannot parse. The system will save unparsed e-mail messages in a local directory under the persistent storage root. Valid values: true, false

SortByAddressOnly

boolean

false

All permitted values

Yes

No

Whether senders should be sorted by email address without the displayed name portion in the web client. With this value set to false, senders will be sorted by the displayed name instead

SubjectSortingGroupingRules

List<String>

[(^\[[fF][wW][dD]:( )*)((.)*)(\]$), 3]

All permitted values

Yes

No

List of regular expressions and group numbers, interleaved so item i+1 denotes group to be returned for matched expression i where i = sequence 0, 2, 4,... etc.

SubjectSortingReplacementRules

List<String>

[[\t\n\r], , ^( )+, , ( )+$, , ( )+, , ^([rR][eE]|[fF][wW][dD]?):, , \([fF][wW][dD]\)$, ]

All permitted values

Yes

No

List of regular expressions and replacement strings, interleaved so item i+1 denotes replacement string for matched expression i where i = sequence 0, 2, 4,... etc.

TimeoutCheckingInterval

long

60000

Min=0, Max=9223372036854775807

Yes

No

The best resolution (precision) for any timeout in the email system. Applies to several protocols and facilities. This is the tolerance band for any email-related timeout.

TransportProperties

EmailService.TransportProperties

n/a

All permitted values

No

Yes

A group of properties associated with email service transport component. Transport component is responsible for processing and delivering email messages to their detinations.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


EmailService.CSIProperties

The following properties are available for EmailService.CSIProperties:

Table 4-58 EmailService.CSIProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

MaxLoadCount

int

20000

Min=0, Max=500000

Yes

No

Max number of items to load in a single CSI load request if the load is requested with any projection other than EMPTY. Otherwise the number is unlimited. This prevents client requests to cause out of memory errors on the server side. It is recommended that this parameter to be tuned assuming each item takes approximately 10KB of memory footprint.

StreamBufferSize

int

8192

Min=0, Max=2147483647

Yes

No

The size (in bytes) of the buffered streams used for CSI based streaming

StreamMaxReadChunkSize

int

16384

Min=0, Max=2147483647

Yes

No

CSI based stream max read chunk size in bytes

StreamMaxWriteChunkSize

int

16384

Min=0, Max=2147483647

Yes

No

CSI based stream max write chunk size in bytes

StreamPreFetchSize

int

0

Min=-1, Max=2147483647

Yes

No

CSI based stream pre-fetch buffer size in bytes

StreamTimeout

long

300000

Min=0, Max=9223372036854775807

Yes

No

Timeout (in relative milliseconds) until an inactive stream of mail data is abandoned, under the assumption the client has lost connectivity with the server or has crashed.

VMSProperties

String

OutboundVMS

All permitted values

Yes

No

Use this VMS Properties object as a policy to enforce upon all CSI email requests. In particular all CSI Email request will be subject to the limit placed by the VMS Properties MaxRcptsPerTx and MaxSzAbortTxn.


EmailService.EndpointProperties

The following properties are available for EmailService.EndpointProperties:

Table 4-59 EmailService.EndpointProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

EndpointName

String

default

All permitted values

Yes

No

Name of the endpoint, it can be any arbitrary descriptive string identifying the endpoint

EndpointScheme

String

default

All permitted values

Yes

No

Scheme for this endpoint. It is a colon-delimited string containing protocol of the endpoint and port number. The format of the scheme is PROTOCOL:*:PORT, for example, MX:*:25 represent a beehive MX endpoint connection on port 25. Available protocols are MX, MXS (MX over SSL), TCP and BUS.


EmailService.IMAPProperties

The following properties are available for EmailService.IMAPProperties:

Table 4-60 EmailService.IMAPProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AssumeSingleEndpoint

boolean

true

All permitted values

Yes

No

If this property is true, the Port property will be used as the listening port. This is a simplification over the more complex list of Endpoints which permit multiple ports for a single instance.

CacheMessageSize

long

12

Min=1, Max=9223372036854775807

Yes

No

Property giving the approximate size in bytes of each message cached in memory

ClientKeepAliveInterval

long

10000

Min=0, Max=9223372036854775807

Yes

No

Get the interval after which some unsolicited response is sent to a client to keep it active (in millseconds)

EndpointPropertiesList

List<EndpointProperties> (Structural property)

n/a

All permitted values

Yes

No

If Assume Single Endpoint is false, this property defines a list of listening endpoints.

FolderCacheDirectory

String

../../beehive/mailspool/temp/imap

All permitted values

Yes

No

The IMAP folder cache directory. IMAP will store temporary files in this directory

FolderOpenBatchSize

int

1000

Min=1, Max=2147483647

Yes

No

Property controlling the batch size IMAP uses to drain the cursor while opening a folder for SELECT or EXAMINE. Setting a small number will reduce memory usage but will impact performance

FolderPollingInterval

long

20000

Min=0, Max=9223372036854775807

Yes

No

The interval by-which the database is polled for changes to the currently selected IMAP folder

FolderSyncBatchSize

int

50

Min=1, Max=2147483647

Yes

No

Get the batch size used for checking updates to folders

LoginErrorThreshold

int

3

Min=0, Max=2147483647

Yes

No

Get the number of login errors tolerated before the connection is forcibly closed.

MaxFolderCacheSize

long

52428800

Min=0, Max=2147483647

Yes

No

Property controlling the maximum amount of memory available for IMAP folder caching

MaxSessions

int

1024

Min=0, Max=2147483647

Yes

No

Maximum number of IMAP sessions server will permit per service instance

MessageLoadBatchSize

int

50

Min=0, Max=100

Yes

No

Property controlling the batch size IMAP uses to load messages from the database. Setting a small number will reduce memory usage but will impact performance. A larger number will improve performance but will increase memory usage per selected folder

ParseErrorThreshold

int

3

Min=0, Max=2147483647

Yes

No

The number of consecutive parser errors tolerated before the connection is forcibly closed.

Port

int

143

Network Port, Min=1, Max=65536

Yes

No

If the property Assume Single Endpoint is enabled (true), then this is the port which the IMAP server will use to accept new connections. If Assume Single Endpoint is false, this property is ignored.

ProtocolLoggingEnabled

boolean

false

All permitted values

Yes

No

Whether IMAP protocol logging is enabled. If enabled, IMAP protocol exchange will be captured and logged under logger oracle.ocs.mail.IMAPLogger with log level INFO.

ServerSessionConcurrency

int

23

Min=1, Max=2147483647

Yes

No

Max number of concurrent sessions which can be serviced as a given moment

SessionTimeout

long

1800000

Min=0, Max=9223372036854775807

Yes

No

The duration in millseconds after which inactive IMAP sessions are automatically logged out and closed.

ShowInstanceNameInBanner

boolean

false

All permitted values

Yes

No

Show IMAP server instance ID in protocol banner display, it identifies a specific application server process that hosts the IMAP server. This can be enabled to help diagnostics when problem arises.

StreamReadBufferSize

int

32768

Min=1, Max=2147483647

Yes

No

Size of temp buffer used when reading from a client stream

SurrogateAuth

boolean

false

All permitted values

Yes

No

If true, IMAP allows surrogate authentication during login

TlsMandatory

boolean

false

All permitted values

Yes

No

If true, when UseTls is enabled IMAP makes STARTTLS mandatory.

UseTls

boolean

false

All permitted values

Yes

No

If true, IMAP advertises STARTTLS capability.


EmailService.PersistenceProperties

The following properties are available for EmailService.PersistenceProperties:

Table 4-61 EmailService.PersistenceProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CopyBatchSize

int

1000

Min=1, Max=1000

Yes

No

Batch size for copy operation. This parameter controls how many messages to copy at a time when the request is huge. Breaking the operation in chunks put less strain on the database

DbConnRetry

String

1000,5000,9000

All permitted values

Yes

No

Attempts to retry a database operation on connection failure. This is employed to support automatic fail-over on clustered database systems. The value is a comma delimited list of successive retry intervals in miliseconds.

DeleteBatchSize

int

100

Min=1, Max=100

Yes

No

Batch size for delete operation. This parameter controls how many messages to delete at a time when the request is huge. Breaking the operation in chunks put less strain on the database

DurableFileRoot

String

../../beehive/mailspool/perm

All permitted values

Yes

No

Root directory under which problematic emails will be saved. This directory should be visible only to the operating system user of the instance, as it contains sensitive data (emails). If a relative path is used rather than absolute, it will be relative to the home directory of the instance

MoveBatchSize

int

1000

Min=1, Max=1000

Yes

No

Batch size for move operation. This parameter controls how many messages to move at a time when the request is huge. Breaking the operation in chunks put less strain on the database

PldStoreCacheLinger

long

180000

Min=0, Max=9223372036854775807

Yes

No

Time (in milliseconds) for an unreferenced record to linger in the cache

PldStoreCleanupInterval

int

86400

Min=0, Max=2147483647

Yes

No

Interval (in seconds) for performing payload store cleanup

PldStoreMaxMemCachedRecords

int

2000

Min=0, Max=2147483647

Yes

No

Maximum number of memory cached records for payload store

PldStoreMaxOpenFDs

int

1000

Min=0, Max=2147483647

Yes

No

Maximum number of open file descriptors used as cache of files being read/written by payload store

PldStoreRecordCacheSz

int

50000

Min=0, Max=2147483647

Yes

No

Size of a cached payload record (in bytes).

PldStoreStreamBufSz

int

8192

Min=0, Max=2147483647

Yes

No

The size (in bytes) of the buffered streams used for file-cached records

TempFileRoot

String

../../beehive/mailspool/temp

All permitted values

Yes

No

Root directory under which temporary emails will be written to disk. This directory should be visible only to the operating system user of the instance, as it contains sensitive data (emails). If a relative path is used rather than absolute, it will be relative to the home directory of the instance.

UndeleteBatchSize

int

1000

Min=1, Max=1000

Yes

No

Batch size for undelete operation. This parameter controls how many messages to undelete at a time when the request is huge. Breaking the operation in chunks put less strain on the database

UpdateFlagsBatchSize

int

1000

Min=1, Max=1000

Yes

No

Batch size for update operation. This parameter controls how many messages to update at a time when the request is huge. Breaking the operation in chunks put less strain on the database


EmailService.SMTPProperties

The following properties are available for EmailService.SMTPProperties:

Table 4-62 EmailService.SMTPProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AssumeSingleEndpoint

boolean

true

All permitted values

Yes

No

If this property is true, the Port property will be used as the listening port. This is a simplification over the more complex list of Endpoints which permit multiple ports for a single instance.

Authentication

boolean

false

All permitted values

Yes

No

If true, the system will advertise the SMTP AUTH extension.

DSNEnabled

boolean

true

All permitted values

Yes

No

If true Delivery Status Notifications are sent when requested by client or by protocol convention

EndpointPropertiesList

List<EndpointProperties> (Structural property)

n/a

All permitted values

Yes

No

If Assume Single Endpoint is false, this property defines a list of listening endpoints.

Port

int

25

Network Port, Min=1, Max=65536

Yes

No

If the property Assume Single Endpoint is enabled (true), then this is the port which the SMTP server will use to accept new connections. If Assume Single Endpoint is false, this property is ignored.

ProtocolLoggingEnabled

boolean

false

All permitted values

Yes

No

Whether SMTP protcol exchange is logged. If enabled, SMTP protocol exchange will be captured and logged under logger oracle.ocs.mail.SMTPLogger with log level INFO

RelayProtocolLoggingEnabled

boolean

false

All permitted values

Yes

No

Whether SMTP outbound protcol exchange is logged. If enabled, SMTP outbound exchange will be captured and logged under logger oracle.ocs.mail.SMTPRelayLogger with log level INFO

SendMailEvenIfNoTls

boolean

false

All permitted values

Yes

No

If true, SMTP outbound sends mail even if remote server doesn't support TLS or STARTTLS command fails.

ServerSessionConcurrency

int

23

Min=1, Max=2147483647

Yes

No

SMTP server thread pool size

UseTls

boolean

false

All permitted values

Yes

No

If true, the system will advertise the SMTP STARTTLS extension.

VMSEvaluatorTopLevel

String

default

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.EmailServiceBundle, key SMTP_VMS_EVALUATOR_TOPLEVEL_LONG_DESC

VMSPropertiesList

List<VMSProperties> (Structural property)

n/a

All permitted values

Yes

No

The list of virtual mail servers for this instance.


EmailService.SMTPProperties.VMSProperties

The following properties are available for EmailService.SMTPProperties.VMSProperties:

Table 4-63 EmailService.SMTPProperties.VMSProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthMandatory

boolean

false

All permitted values

Yes

No

If true and Authentication is enabled, SMTP requires authentication before accepting mail.

CustomDisplayName

String

server

All permitted values

Yes

No

The custom name of the server, as will be seen on the initial salutation of the SMTP protocol. Note that this property is not read unless Use Default Display Name is set to false.

CustomDomainName

String

default

All permitted values

Yes

No

A domain name for this virtual mail server which differs from the system-wide domain name. This property is not used unless Use Default Domain Name is set to false.

CustomProductVersion

String

default

All permitted values

Yes

No

A custom version of the product, different than that which shipped from Oracle. This property is not used unless Use Custom Default Product Version is set to false.

LogAllExceptions

boolean

false

All permitted values

Yes

No

Should all exceptions be logged. Setting to false prevents reporting of the (many types of) problems that can occur with remote clients (esp in the Internet).

MaxAbortedTransitionsPerSession

int

100

Min=1, Max=2147483647

Yes

No

Maximum number of aborted transactions per session before the client is assumed to be engaging in some form of denial-of-service attack and is terminated.

MaxBadTransitionsPerSession

int

20

Min=1, Max=2147483647

Yes

No

Maximum number of illegal (out of sequence) SMTP commands before the session is assumed to be an attacker and is closed.

MaxCommandLineSize

int

2048

Min=1, Max=2147483647

Yes

No

Maximum size (in bytes) of a single SMTP line. Note that this value should not be set to the minimum defined in the SMTP specification, as some legitimate mail servers violate that specification. Rather, this value is intended to be large enough to accept mails from poor-conforming mail servers yet reject attempts at denial of service or buffer overflow attacks.

MaxRcptsPerTx

int

101

Min=1, Max=2147483647

Yes

No

Maximum number of recipients per transaction. It is advised to set this number above 100 as per the SMTP specification. When this number is exceeded, subsequent RCPT TO commands will receive an error.

MaxRejectedAddressesPerSession

int

1000

Min=0, Max=2147483647

Yes

No

Maximum number of rejected recipients before a given session is assumed to be illegitimate, and it terminated. This is useful to prevent address-harvesting by senders of unwanted email.

MaxSizeBeforeAttackSuspected

long

1000000000

Min=0, Max=9223372036854775807

Yes

No

Maximum email size received before the client is assumed to be engaged in a denial of service attack. Once this threshold is crossed, the client session is abruptly terminated. Note that this differs from Max Mail Size in that mails exceeding that value do not result in termination of the entire session.

MaxSzAbortTx

long

10000000

Min=0, Max=9223372036854775807

Yes

No

Maximum size for an email on this virtual mail server. Note that Use Default Max Size must be set to false for this property to be read.

MaxUselessCommandsPerSession

int

5000

Min=0, Max=2147483647

Yes

No

Maximum number of commands with no effect (e.g. NOOP) per session before we assume that the client is engaged in some form of denial of service attack.

NextCommandTimeout

int

301000

Min=1, Max=2147483647

Yes

No

Inactivity timeout (in milliseconds) for clients between issuing commands. Note that this does not include the SMTP DATA command.

NextDataChunkTimeout

int

301000

Min=1, Max=2147483647

Yes

No

Timeout (in milliseconds) waiting for next packet during the receive portion of the DATA command.

QuitWriteTimeout

int

60000

Min=1, Max=2147483647

Yes

No

Timeout (in milliseconds) waiting for remote client to consume the ACK of the QUIT command

RecipientMatcherTopLevel

String

default

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.EmailServiceBundle, key VMS_RECIPIENT_MATCHER_TOPLEVEL_LONG_DESC

RejectAll

boolean

false

All permitted values

Yes

No

If true, this virtual mail server will reject all connections.

SenderMatcherTopLevel

String

default

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.EmailServiceBundle, key VMS_SENDER_MATCHER_TOPLEVEL_LONG_DESC

ShowInstanceNameInBanner

boolean

false

All permitted values

Yes

No

Show SMTP server instance ID in protocol banner display, it identifies a specific application server process that hosts the SMTP server. This can be enabled to help diagnostics when problem arises.

SupressReceivedFrom

boolean

false

All permitted values

Yes

No

If true, the client IP/hostname will not be embedded in the RECEIVED header added to email headers.

SupressResponseText

boolean

false

All permitted values

Yes

No

If true, SMTP responses to not carry the debugging information in addition to the SMTP codes.

TlsMandatory

boolean

false

All permitted values

Yes

No

If true and UseTls is enabled, SMTP requires TLS.

UseDefaultDisplayName

boolean

false

All permitted values

Yes

No

If false, the Custom Display Name is used. Otherwise, the original product name is used.

UseDefaultDomainName

boolean

true

All permitted values

Yes

No

If false, this virtual mail server will advertise a domain different than the rest of the system.

UseDefaultMaxSz

boolean

true

All permitted values

Yes

No

If false, the global maximum email size will not be used and instead the Max Email Size defined for this virtual mail server will be used.

UseDefaultProductVersion

boolean

false

All permitted values

Yes

No

If false, the Custom Product Version is returned as part of the SMTP salutation

VMSName

String

default

All permitted values

Yes

No

The administrator-assigned name of this virtual mail server.


EmailService.TransportProperties

The following properties are available for EmailService.TransportProperties:

Table 4-64 EmailService.TransportProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AcceptInvalidLocalUsers

boolean

false

All permitted values

Yes

No

Indicates if non-existant local users should be accepted by the system and treated as remote recipients. Should be set to true when users for a single domain exist in this and another email system.

DeliveryConcurrency

int

5

Min=1, Max=2147483647

Yes

No

The maximum number of concurrent threads which will be dedicated to delivering a given email. This is employed when a single email is destined for a large number of recipients, and serves to prevent high-recipient emails from consuming excessive system resources.

DeliveryTopLevel

String

default

All permitted values

Yes

No

XML encoded delivery routing rules. This includes both properties settable from beekeeper and possible freelance groovy scripts. These rules are applied to determine the next stop for any given mail being relayed.

InMemoryQueueSize

int

250

Min=0, Max=2147483647

Yes

No

Maximum number of emails received at a given instance which have yet to be processed. This can be thought of as a backlog of emails. Should this value be exceeded, emails will be received but not processed at the current instance.

KeepAliveInterval

long

300000

Min=60000, Max=9223372036854775807

Yes

No

Time (in milliseconds) between server registration to signal its alive status by the email service instance.

LocalDeliveryBatchSize

int

100

Min=1, Max=2147483647

Yes

No

Number of recipients in a batch of local recipients. Local recipients are those who maintain an inbox within the current system.

MaxReceivedHeaders

int

25

All permitted values

Yes

No

Max number of "Received:" allowed in a message before it is discarded. A high number of this header present in a message signals a possible routing loop.

MaxRetryPeriod

long

432000000

Min=0, Max=9223372036854775807

Yes

No

Time (in milliseconds) after receipt of an email that delivery is no longer attempted.

MaximumDBMessageQueuePercentage

int

80

Min=0, Max=100

Yes

No

Maximum percentage of queue size reserved for retry and recovery. An idle system with relatively high server restart requirements or relatively high temporary delivery failure (such as due to quota overflow) can increase this value to improve efficiency of the system.

MinimumDBMessageQueuePercentage

int

20

Min=0, Max=100

Yes

No

Minimum percentage of queue size reserved for retry and recovery. An idle system with relatively high server restart requirements or relatively high temporary delivery failure (such as due to quota overflow) can increase this value to improve efficiency of the system.

MsgTerminusTopLevel

String

default

All permitted values

Yes

No

XML encoded message terminus rules. This includes both properties settable from beekeeper and possible freelance groovy scripts. These rules are applied when a given message ends its lifecycle in the email transport system, including successful delivery or permanent failure of all its recipients.

PreResolutionTopLevel

String

default

All permitted values

Yes

No

XML encoded pre-resolution rules including both properties settable from beekeeper and possible freelance groovy scripts. These rules are to be applied during message processing before any of the recipients are resolved

ProcessingEnabled

boolean

true

All permitted values

Yes

No

If this value is false, it has the effect of preventing any received/delayed emails from being delivered.

QueuePollInterval

long

120000

Min=0, Max=9223372036854775807

Yes

No

Time (in milliseconds) between retry and recovery queue polling by the transport system.

RelayServer

String

default

All permitted values

Yes

No

If the property Simple Relay Mode is true, then this is the name of the relay server to be used.

ResolutionTopLevel

String

default

All permitted values

Yes

No

XML encoded post-resolution rules including both properties settable from beekeeper and possible freelance groovy scripts. These rules are to be applied during message processing after all the recipients are resolved.

RetryInterval

int

1800000

Min=-1, Max=2147483647

Yes

No

Time (in milliseconds) between delivery attempts for an email which has at least one undeliverable recepient.

SMTPDeliveryBatchSize

int

100

Min=1, Max=2147483647

Yes

No

The maximum number of recipients within a given SMTP transaction. As per the specifications for SMTP, this value should not exceed 100.

SMTPDeliveryCheckpoint

int

5

Min=1, Max=2147483647

Yes

No

This value controls how often the status of recipients is recorded during delivery of messages to large number of recipients/domains. If this value is small, there is less of a chance of duplicate mail in the event of a system crash. However, smaller settings for this value result in more system load.

ScanOnUpload

boolean

false

All permitted values

Yes

No

If true, emails are scanned as they are uploaded to the system. Upload includes IMAP APPEND as well as API calls which insert, rather than send, emails. Scanning on send is controlled by the pre/post resolution rules.

SentEmailPluginEnabled

boolean

false

All permitted values

Yes

No

Whether plug-ins are enabled to be executed after a mail is received. These are internal bookkeeping plugins designed for record management or auditing.

SimpleRelayMode

boolean

true

All permitted values

Yes

No

If true, the XML-based Delivery Rules are not used. Instead, a simpler configuration is assumed where the administrator need only supply a relay host (via the Relay Server property). If this value is true yet the Relay Server is unset, an error will be issued and email delivery will be prevented.

ThreadPoolSize

int

10

Min=1, Max=2147483647

Yes

No

Number of threads within the processing thread pool


Enterprise

The following properties are available for Enterprise:

Table 4-65 Enterprise Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CollabId

CollabId

n/a

All permitted values

No

Yes

The Collabid of this Enterprise

Name

String

n/a

All permitted values

Yes

No

the name of the system object.


EventService

The following properties are available for EventService:

Table 4-66 EventService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AsyncActionRetryCount

int

5

All permitted values

Yes

No

The Event Service will retry the specified number of times when the action handler fails to process the event. The Event Service moves the event to the failed queue after it has retried the specified number of times. Also see AsyncActionRetryInterval parameter.

AsyncActionRetryInterval

int

5

All permitted values

Yes

No

Time interval in minutes between retries of failed action. Also see AsyncActionRetryCount parameter.

AsyncLogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

WARNING

All permitted values

Yes

No

The log level is used by the Business Event processing engine to determine the detail of the logs written. The log level of FINEST will write the most detailed log messages, and SEVERE will log the least.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxThreadPoolSize

int

10

All permitted values

Yes

No

A correctly sized thread pool will be able to keep up with the load of the java action queue. If the action queue keeps growing, and the Event Service is not able to keep up with the load, then this value should be increased. Be aware a larger pool size may require more database and mid-tier resources to keep up with the load.

PreEvaluateThresholdRuleCount

int

1000

All permitted values

Yes

No

The purpose of this parameter is to tune the overall system performance in regards to event processing. The threshold number is in relationship to the total number of subscription conditions (or rules) per event type (such as DOCUMENT, EMAIL, CALENDAR, etc.). If this number is smaller than the total number of rules, and the total number of rules is very large, it is possible that pre-evaluating the rules can take more time. If this number is larger than the total number of rules, the Event Service will not pre-evaluate any rules. It will automatically queue all events which may not have any matching subscriptions, and therefore not be very efficient.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ExpertiseService

The following properties are available for ExpertiseService:

Table 4-67 ExpertiseService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ActiveLanguages

List<String>

[English]

This property has a customized constraint.

Yes

No

This property specifies the list of languages which are active. Currently, the supported languages are English, French and German

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

EnableExpertiseRequestExpiration

Boolean

true

All permitted values

Yes

No

Flag to enable periodic expiration of ExpertiseRequests. A request is said to expire if there has been no activity (posts to dicsussion forum) prior to the expiration interval. Expired requests will be periodically purged from the system. The allowed values are true or false.

ExpertiseRequestExpirationInterval

int

90

This property has a customized constraint.

Yes

No

Interval in days after which an Expertise Request is said to expire, if there has been no activity (posts to dicsussion forum) for it. The interval must be somewhere between 30 days and 180 days.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxArtifactSize

int

15728640

This property has a customized constraint.

Yes

No

This property specifies the maximum size of an artifact that would be profiled. The default value is 15728640 bytes which is equivalent to 15 megabytes.

MaxNumPublicTermsPerProfile

int

100

This property has a customized constraint.

Yes

No

This property specifies the maximum number of public terms a user can have in her profile. This is a global setting applicable to all users. The default value is 100

MaxNumTermsPerProfile

int

10000

This property has a customized constraint.

Yes

No

This property specifies the maximum number of terms a user can have in her profile. This is a global setting applicable to all users. A valid value is anything between 500 and 10000. The default value is 10000

MaxNumUsersForBrokeredRequest

int

50

This property has a customized constraint.

Yes

No

This property specifies the maximum number of size to whom brokered requests would be sent. The default value is set at 50. Any positive value upto 100 is acceptable.

NumDaysFetchContent

int

90

This property has a customized constraint.

Yes

No

This property specifies the number of days to go back in time to fetch content (messages) for profiling for bootstrapped users. The default value is set at 90 days. Any value upto 365 days is acceptable.

NumProfilerParallelRuns

int

10

This property has a customized constraint.

Yes

No

This property specifies the number of threads of the profiler that could run.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ExternalJ2eeApplication

The following properties are available for ExternalJ2eeApplication:

Table 4-68 ExternalJ2eeApplication Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdminPassword

SecureString

n/a

All permitted values

Yes

No

the password of the oc4j admin user

AdminUsername

String

oc4jadmin

All permitted values

Yes

No

the name of the oc4j admin user

Hostname

String

n/a

All permitted values

Yes

No

the hostname used for generating urls to access the application.

Oc4jName

String

n/a

All permitted values

No

No

the name of the oc4j

OpmnRequestPort

int

n/a

All permitted values

Yes

No

the opmn request port for generating urls to access the application.


FaxMessageService

The following properties are available for FaxMessageService:

Table 4-69 FaxMessageService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DebugFlags

Integer

n/a

All permitted values

Yes

No

description bundle not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


FtpService

The following properties are available for FtpService:

Table 4-70 FtpService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ActiveModeEnabled

boolean

false

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.FtpBundle, key FTP_ENABLE_ACTIVE_LONG_DESC

ChannelSecurity

String

PLAIN_AND_TLS

All permitted values

Yes

No

Specifies the types of connections the system will accept.Valid values are TLS, PLAIN and PLAIN_TLS.

DMSInstrumentation

boolean

false

All permitted values

Yes

No

Collects DMS statistics if the value is set to TRUE.

DataConnectionPort

int

21000

Network Port, Min=1, Max=65536

Yes

No

Starting port number from which FTP data connections are created in passive mode.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DefaultCommandCharacterset

String

UTF-8

All permitted values

Yes

No

Default command character set used to interpret FTP commands and arguments.

DefaultDataPort

int

2120

Network Port, Min=1, Max=65536

Yes

No

The default data port number from which the FTP server will make outbound connections in PORT mode..

FtpServerEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not the BEEHIVE FTP server is enabled. If enabled (true), the FTP server accepts client requests. Valid values: true, false.

InternalIP

String

DEFAULT

All permitted values

Yes

No

This parameter gives the IP address that needs to be returned as response to PASV command for DMZ deployments.

ListeningPoint

String

DEFAULT

All permitted values

Yes

No

Listening points (network interface groups) that the system's FTP server will support. Valid values are : INTERNAL, EXTERNAL, DEFAULT and INTERNAL_EXTERNAL.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxDCPortCount

int

1000

All permitted values

Yes

No

The maximum number of ports the FTP service can use for passive listening.

Port

int

2121

Network Port, Min=1, Max=65536

Yes

No

The port at which the FTP server listens for client requests.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SessionTimeout

int

900000

All permitted values

Yes

No

The amount of time (in milliseconds) that the FTP server will wait for a request from a connected client before terminating the session..

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UploadBufferSize

int

260096

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while uploading stream data. Deployments that typically stream small files, as well as those with limited midtier memory, may improve performance by setting this value below the default. Deployments with a large amount of midtier memory may likewise improve performance by setting this value above the default.


HasHelpLink

The following properties are available for HasHelpLink:

Table 4-71 HasHelpLink Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

HelpLink

String

n/a

All permitted values

Yes

No

A configurable link to help text for Beehive clients.


HttpServer

The following properties are available for HttpServer:

Table 4-72 HttpServer Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BeehiveInstance

BeehiveInstance

n/a

All permitted values

No

No

The BeehiveInstance with which this HttpServer is associated.

DocRootLimitExcept

String

GET POST

All permitted values

Yes

No

Restrict access controls to all HTTP methods except the named ones.

HttpListenPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The port to which the http server listens. This port is used when starting without SSL

HttpServerCluster

HttpServerCluster

n/a

All permitted values

Yes

No

Each httpserver is associated with a cluster and each site typically has atleast one and only cluster. A HttpServerCluster has properties common to all httpserver's in the cluster.

HttpSslListenPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The port to which the http server listens when ssl is enabled. This port is used when starting with SSL

KeepAliveTimeout

Integer

15

All permitted values

Yes

No

Idle connection to the server will be alive until this timeout limit

LockFile

File

apache/httpd.lock

All permitted values

Yes

No

The lockfile is used when the server needs to lock the accept call. It must be stored on a local disk.

LogLevel

HttpServer.HttpServerLogLevel (Legal values: emerg, alert, crit, error, warn, notice, info, debug)

notice

All permitted values

Yes

No

Controls the verbosity of the ErrorLog. The following levels are available, in order of decreasing significance:emerg, alert, crit, error, warn, notice, info and debug.

MaxClients

Integer

150

All permitted values

Yes

No

Limit on the number of clients who can simultaneously connect. if this limit is ever reached, clients will be LOCKED OUT, so it should NOT BE SET TOO LOW. It is intended mainly as a brake to keep a runaway server from taking the system with it as it spirals down.

OsGroup

String

n/a

All permitted values

No

Yes

The group to run httpd as.

OsUser

String

n/a

All permitted values

No

Yes

The user to run httpd as.

SSLLogLevel

HttpServer.HttpServerSSLLogLevel (Legal values: none, error, warn, info, trace, debug)

warn

All permitted values

Yes

No

Controls the verbosity of the SSL ErrorLog. The following levels are available, in order of decreasing significance:none, error, warn, info, trace, and debug.

ServerAdmin

String

" "

All permitted values

Yes

No

Your address, where problems with the server should be e-mailed. This address appears on some server-generated pages, such as error documents.

ServerRoot

String

n/a

All permitted values

No

Yes

The top of the directory tree under which the server's configuration, error, and log files are kept.

Timeout

Integer

60

All permitted values

Yes

No

The number of seconds before receives and sends time out.


HttpServerCluster

The following properties are available for HttpServerCluster:

Table 4-73 HttpServerCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

HttpServerSslEnabled

Boolean

true

All permitted values

Yes

No

If Http ssl is enabled in this HttpServer Cluster.

HttpServers

Set<HttpServer> (Structural property)

n/a

All permitted values

Yes

No

The set of HttpServer's associated with this cluster.

ModOc4jMaxErrors

Integer

1

All permitted values

Yes

No

Oc4jSet MaxErrors in mod_oc4j.conf.

SslTerminatedByLoadBalancer

Boolean

false

All permitted values

Yes

No

If Http ssl is terminated by the load balancer.


IdMap

The following properties are available for IdMap:

Table 4-74 IdMap Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Map

Map<String,String>

n/a

All permitted values

Yes

No

Specifies the map of identity format to identity mapping attribute. Valid identity format values include: unspecified; email_addr; x509_subject; windows_dqn. Valid identity mapping attribute could be any User Directory Service address attribute.


IdentityProviderService

The following properties are available for IdentityProviderService:

Table 4-75 IdentityProviderService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

IdpSAMLIdentity

SAMLIdentity

n/a

All permitted values

Yes

No

Specifies the alias to the key and/or certificate of the Oracle Beehive SAML identity provider listed in the Oracle Wallet.

IdpUrl

String

n/a

All permitted values

Yes

No

Specifies the URL of the SAML identity provider for system.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SpSAMLIdentity

SAMLIdentity

n/a

All permitted values

Yes

No

Specifies the alias to the key and/or certificate of the Oracle Beehive SAML service provider listed in the Oracle Wallet.

SpUrl

String

n/a

All permitted values

Yes

No

Specifies the URL of the SAML service provider.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ImService

The following properties are available for ImService:

Table 4-76 ImService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ArchivingEnabled

boolean

false

All permitted values

Yes

No

Set this parameter to true to enable organisation level archiving. If this is set to false, user level archiving preference has no effect.

ChatRoomTranscriptsOn

boolean

false

All permitted values

Yes

No

Set this to true if chatroom conversations need to be archived. False otherwise(default).

ChatRoomXhtmlFormattingOn

boolean

true

All permitted values

Yes

No

Set this to true if XHMTL formatting needs to be enabled in chat rooms(default). Set to false otherwise.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

ImBufferStageSize

int

500000

Min=100000, Max=3000000

Yes

No

This value defines the maximum size of the buffer to keep instant messages in memory before they are written into database as transcripts. The default value is 500Kb. Please note that the instant messages can be written to db before this maximum is reached. This is possible on account of expiration of im_purging_period_timer.

ImEndPointDeathDetectionTime

int

5

Min=5, Max=300

Yes

No

This property allows the admin to set the time interval at which the ImServiceInstance should send KEEP_ALIVE packets to the IPAs. This enables the IPAs to detect any ImService instance going down. The value is in seconds with a default of 5 s.

ImOfflinePurgingPeriodTimer

int

5

Min=2, Max=120

Yes

No

This value allows the admin to set the maximum time for which offline instant messages can be buffered in memory before they are written to DB in chunks. The default is 5 secs. Please note that the instant messages can be written to db even before this timer expires. This is possible on account of 100 offline buffered messages.

ImPurgingPeriodTimer

int

300

Min=60, Max=600

Yes

No

This value allows the admin to set the maximum time for which instant messages can be buffered in memory before they are written to DB in chunks. The default is 300 secs. Please note that the instant messages can be written to db even before this timer expires. This is possible on account of the buffer reaching its maximum size limit as defined by the im_buffer_stage_size property.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxRoomCount

int

10000

Min=0, Max=100000

Yes

No

This is the maximum number of rooms that are allowed by the server. Initial value is set to 10000

MaxUsersInRoom

int

100

Min=2, Max=500

Yes

No

This is the maximum number of users allowed in any room on the server. Initial value is set to 100.

OnlyPasswordProtectedRooms

boolean

false

All permitted values

Yes

No

Set this parameter to true if only password protected rooms are to be allowed in the server. If set to false (default) non password protected rooms are also allowed.

PendingMessagesLimit

int

1100

Min=11, Max=2147483647

Yes

No

This value sets the limit on the number of pending messages on the bus session before the send operation blocks. This is used for flow control of messages. The default value is of 1100. A larger value allows for more concurrency and lower value allows for less concurrency. This value also effects the memory usage determined by the pending messages in the session buffer.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

ReplayMessageHistoryOnJoin

boolean

false

All permitted values

Yes

No

Set this to true if all messages exchanged in the room since the first user joined the room are to be replayed, Set to false otherwise (default).

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


IrmService

The following properties are available for IrmService:

Table 4-77 IrmService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ClassificationId

String

n/a

All permitted values

Yes

No

IRM_CID_L_DESC

ClassificationLabelDescription

String

n/a

All permitted values

Yes

No

IRM_CLD_L_DESC

ClassificationLabelName

String

n/a

All permitted values

Yes

No

IRM_CLNM_L_DESC

ClassificationLocale

String

n/a

All permitted values

Yes

No

IRM_CLL_L_DESC

ClassificationSystemId

String

n/a

All permitted values

Yes

No

IRM_CSID_L_DESC

ContentLabelDescription

String

n/a

All permitted values

Yes

No

IRM_CCLD_L_DESC

ContentLabelLocale

String

n/a

All permitted values

Yes

No

IRM_CCLL_L_DESC

ContentLabelName

String

n/a

All permitted values

Yes

No

IRM_CCLN_L_DESC

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DesktopSyncURI

String

n/a

All permitted values

Yes

No

IRM_DURI_L_DESC

DesktopURI

String

n/a

All permitted values

Yes

No

IRM_DURI_L_DESC

IrmDesktopServiceEndPoint

String

n/a

All permitted values

Yes

No

IRM_ENDPT_L_DESC

IrmSealingServiceEndPoint

String

n/a

All permitted values

Yes

No

IRM_ENDPT_L_DESC

IrmUserName

String

n/a

All permitted values

Yes

No

IRM_UNAME_L_DESC

IrmUserPassword

SecureString

n/a

All permitted values

Yes

No

IRM_UPWD_L_DESC

KeySetUUID

String

n/a

All permitted values

Yes

No

IRM_KEYSETID_L_DESC

LicenseExpirationTime

int

30

All permitted values

Yes

No

IRM_LIC_EXP_L_DESC

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RequiresHttpAuth

boolean

false

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.IrmServiceBundle, key IRM_AUTH_L_DESC

RequiresHttps

boolean

false

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.IrmServiceBundle, key IRM_HTTPS_L_DESC

SystemLabelDescription

String

n/a

All permitted values

Yes

No

IRM_CCLD_L_DESC

SystemLabelLocale

String

n/a

All permitted values

Yes

No

IRM_CCLL_L_DESC

SystemLabelName

String

n/a

All permitted values

Yes

No

IRM_CCLN_L_DESC

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


JavaExecutionArguments

The following properties are available for JavaExecutionArguments:

Table 4-78 JavaExecutionArguments Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdditionalOptions

List<String>

n/a

All permitted values

Yes

No

The set of additional options for the system's Java Virtual Machine (JVM). Each option must be a legal option supported by the JVM, for example -Dproperty=value to set a system property value. This an ADVANCED property which you do not typically need to modify.

InitialHeapSizeInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The initial heap size in megabytes (MBs) of the Java Virtual Machine (JVM).

InitialPermanentGenerationSizeInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The initial permanent generation size in megabytes (MBs) of the Java Virtual Machine (JVM).

MaximumHeapSizeInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The maximum heap size in megabytes (MBs) of the Java Virtual Machine (JVM).

MaximumPermanentGenerationSizeInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The maximum permanent generation size in megabytes (MBs) of the Java Virtual Machine (JVM).


JcrServletService

The following properties are available for JcrServletService:

Table 4-79 JcrServletService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthenticationScheme

String

BASIC

This property has a customized constraint.

Yes

No

Specifies the JCR server's authentication scheme. Valid values: basic, digest.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

JCRServerEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not the BEEHIVE Java Content Repository (JCR) server is enabled. If enabled (true), the JCR server accepts client requests else it throws an appropriate exception. Valid values: true, false

JcrSessionTimeout

int

960

This property has a customized constraint.

Yes

No

The amount of time (in minutes) that the JCR server will wait for a request from a connected client before terminating the session.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxDownloadBufferSize

int

261888

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while downloading stream data. Deployments that typically stream small files, as well as those with limited midtier memory, may improve performance by setting this value below the default. Deployments with a large amount of midtier memory may likewise improve performance by setting this value above the default.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UploadBufferSize

int

260096

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while uploading stream data. Deployments that typically stream small files, as well as those with limited midtier memory, may improve performance by setting this value below the default. Deployments with a large amount of midtier memory may likewise improve performance by setting this value above the default.


LdapServer

The following properties are available for LdapServer:

Table 4-80 LdapServer Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DigestAuthenticationAttribute

String[]

n/a

All permitted values

Yes

No

Specifies the LDAP attributes to be used for the various digest authentication protocols. The attribute entry format is [attribute type]:[attribute name]'. The valid attribute types are DEFAULT, SASL.DIGEST_MD5, and HTTP.DIGEST. e.g. DEFAULT:userPassword;SASL.DIGEST_MDS:mySaslDigestAttribute

DirectoryType

LdapServer.DirectoryType (Legal values: ORACLE_INTERNET_DIRECTORY, MICROSOFT_ACTIVE_DIRECTORY, SUN_ONE_DIRECTORY, IBM_TIVOLI_DIRECTORY, OPENLDAP_DIRECTORY, OTHER)

n/a

All permitted values

Yes

No

Specifies the LDAP directory type. The valid values are ORACLE_INTERNET_DIRECTORY, MICROSOFT_ACTIVE_DIRECTORY, SUN_ONE_DIRECTORY, IBM_TIVOLI_DIRECTORY, and OTHER.

GroupObjectClass

String

n/a

All permitted values

Yes

No

Specifies the LDAP group object class. e.g. groupOfUniqueNames

GroupSearchBase

String

n/a

All permitted values

Yes

No

Specifies the LDAP group search base DN.

LdapServerConnectionPoolMaxSize

int

25

All permitted values

Yes

No

long description key not set

LdapServerConnectionTimeout

int

120

All permitted values

Yes

No

long description key not set

LdapServerHostName

String

n/a

All permitted values

Yes

No

Specifies the LDAP server hostname.

LdapServerPassword

SecureString

n/a

All permitted values

Yes

No

Specifies the password of the user that is used to bind to the LDAP server.

LdapServerPort

int

389

Network Port, Min=1, Max=65536

Yes

No

Specifies the LDAP server port.

LdapServerSslPort

int

636

Network Port, Min=1, Max=65536

Yes

No

Specifies the LDAP server secure port.

LdapServerUser

String

n/a

All permitted values

Yes

No

Specifies the user that should be used to bind to the LDAP server. The user must have read access to the attributes of all Beehive users.

PrimaryAuthenticationAttribute

String

 

All permitted values

Yes

No

Specifies the LDAP attribute that stores the primary principal in LDAP. e.g. uid

PrimaryAuthenticationCredential

String

not applicable

All permitted values

No

No

Specifies the LDAP attribute that stores the secret for the primary authentication attribute.

ProtocolAuthenticationAttribute

String

not applicable

All permitted values

No

No

Specifies the LDAP attribute that stores the ASCII (7-bit) principal for the clients that do not support multi-byte string.

ProtocolAuthenticationCredential

String

not applicable

All permitted values

No

No

Specifies the LDAP attribute that stores the secret for the ASCII (7-bit) principal used for the authentication of clients that do not support multi-byte string.

SslEnabled

boolean

false

All permitted values

Yes

No

Specifies whether or not SSL should be used to connect to the LDAP server.

UserObjectClass

String

n/a

All permitted values

Yes

No

Specifies the LDAP user object class. e.g. inetOrgPerson

UserSearchBase

String

n/a

All permitted values

Yes

No

Specifies the LDAP user search base DN.

VoiceAuthenticationAttribute

String

not applicable

All permitted values

No

No

Specifies the LDAP attribute that stores the voice principal in LDAP (used by voice clients).

VoiceAuthenticationCredential

String

not applicable

All permitted values

No

No

Specifies the LDAP attribute that stores the secret for the authentication of voice clients.


LoggingConfigurable.LoggingProperties

The following properties are available for LoggingConfigurable.LoggingProperties:

Table 4-81 LoggingConfigurable.LoggingProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BaseLogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

WARNING

All permitted values

Yes

No

Base Log Level is the default when the log level is not configured through Module Log Level. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxFileSize

Long

10485760

All permitted values

Yes

No

Maximum log file size in bytes. A new log file is opened when the current file exceeds this size.

MaxLogSize

Long

104857600

All permitted values

Yes

No

Maximum log size in bytes. It is the maximum total size of all log files combined.

ModuleLogLevel

Map<String,Level>

n/a

All permitted values

Yes

No

Module Log Level. You will use this advanced property under the guidance of a trained consultant who will explain the correct usage details. Each Logger can have it's log level configured through Module Log Level. It is a map from logger name to log level.

RotationFrequency

LoggingConfigurable.RotationFrequency (Legal values: HOURLY, DAILY, WEEKLY)

DAILY

All permitted values

Yes

No

The log file rotation frequency. Log files are rotated when they exceed the maximum log size and they are also rotated periodically according to the rotation frequency. Valid values are HOURLY, DAILY, and WEEKLY.


ManagedOc4j

The following properties are available for ManagedOc4j:

Table 4-82 ManagedOc4j Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdminPassword

SecureString

n/a

All permitted values

Yes

No

the password of the oc4j admin user

AdminUsername

String

oc4jadmin

All permitted values

Yes

No

the name of the oc4j admin user

AjpPortMaxValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The maximum value for ajp port range

AjpPortMinValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The minimum value for ajp port range.

Applications

Set<BeehiveJ2eeApplication> (Structural property)

n/a

All permitted values

Yes

No

The list of BeehiveJ2eeApplications associated with the Oc4j instance.

BeehiveInstance

BeehiveInstance

n/a

All permitted values

No

No

The BeehiveInstance with which this ManagedOc4j is associated.

Database

Database

n/a

All permitted values

Yes

No

This database holds the configuration data and holds business data for any Enterprise that does not have its own dedicated storage.

HttpThreadPoolConfiguration

Oc4jThreadPool (Structural property)

n/a

All permitted values

No

No

The HTTP Oc4jThreadPool with which this ManagedOc4j is associated.

JGroupPortMaxValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The maximum value for jgroup port range

JGroupPortMinValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The minimum value for jgroup port range

JcaThreadPoolConfiguration

Oc4jThreadPool (Structural property)

n/a

All permitted values

No

No

The JCA Oc4jThreadPool with which this ManagedOc4j is associated.

JmsPortMaxValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The maximum value for jms port range

JmsPortMinValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The minimum value for jms port range

ManagedOc4jCluster

ManagedOc4jCluster

n/a

All permitted values

Yes

No

The Oc4jCluster which this ManagedOc4j belongs to. Each managedOc4j is associated with a cluster. An ManagedOc4jCluster has properties common to all oc4j's in the cluster.

Oc4jName

String

n/a

All permitted values

No

No

the name of the oc4j

PseudoTranslationEnabled

boolean

false

All permitted values

Yes

No

A Boolean flag that is used to enable/disable the pseudo-translation in Beehive Resource Bundle.

PseudoTranslationStrategy

String

n/a

All permitted values

Yes

No

The class name of pseudo translation algorithm that will be used for translation process by Beehive Resource Bundle.

ResourceAdapterInstances

Set<ResourceAdapterInstance> (Structural property)

n/a

All permitted values

Yes

No

The list of ResourceAdapterInstances associated with the Oc4j instance.

RmiClientTimeout

int

1200

Min=1, Max=2147483647

Yes

No

RMI client timeout value (in seconds) for this Oc4j.

RmiConnectionThreadPoolConfiguration

Oc4jThreadPool (Structural property)

n/a

All permitted values

No

No

The RMI-Connection Oc4jThreadPool with which this ManagedOc4j is associated.

RmiLookupTimeout

int

5000

Min=1, Max=10000

Yes

No

RMI lookup timeout value (in milliseconds) for this Oc4j.

RmiPortMaxValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The maximum value for rmi port range

RmiPortMinValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The minimum value for rmi port range

RmiRequestThreadPoolConfiguration

Oc4jThreadPool (Structural property)

n/a

All permitted values

No

No

The RMI-Request Oc4jThreadPool with which this ManagedOc4j is associated.

RmisPortMaxValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The maximum value for rmis port range

RmisPortMinValue

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The minimum value for rmis port range

SipContainer

SipContainer

n/a

All permitted values

Yes

No

The SipContainer with which this ManagedOc4j is associated.

StartJavaExecutionArguments

JavaExecutionArguments

n/a

All permitted values

Yes

No

Arguments for the Java Virtual Machine when starting this component

StopJavaExecutionArguments

JavaExecutionArguments

n/a

All permitted values

Yes

No

Arguments for the Java Virtual Machine when starting this component

SystemThreadPoolConfiguration

Oc4jThreadPool (Structural property)

n/a

All permitted values

No

No

The System Oc4jThreadPool with which this ManagedOc4j is associated.


ManagedOc4jCluster

The following properties are available for ManagedOc4jCluster:

Table 4-83 ManagedOc4jCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdminPassword

SecureString

n/a

All permitted values

Yes

No

the password of the oc4j admin user

AjpsEnabled

boolean

false

All permitted values

Yes

No

If Ajps is enabled for this Oc4j cluster.

ManagedOc4js

Set<ManagedOc4j> (Structural property)

n/a

All permitted values

Yes

No

The set of Oc4j associated with this cluster.

OrmisEnabled

boolean

true

All permitted values

Yes

No

If ormis is enabled for this Oc4j Cluster.


ManagedOc4jCluster.HealthMonitorProperties

No other properties exist for ManagedOc4jCluster.HealthMonitorProperties .

ManagementService

The following properties are available for ManagementService:

Table 4-84 ManagementService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AutoSyncSaveListenerSleepIntervalInSeconds

int

25

All permitted values

Yes

No

The interval (in seconds) after which the background task to synchronize any pending configuration changes to local configuration files will be invoked.

AutoSyncSaveListenerTimeoutInSeconds

int

20

All permitted values

Yes

No

The interval (in seconds) after which batched local configuration file changes will be saved and necessary actions like restarting processes initiated to effect the changes.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

ExportConfigurationEnabled

boolean

true

All permitted values

Yes

No

Enables or disables the configuration export background task.

LocalFileSyncEnabled

boolean

false

All permitted values

Yes

No

When set to true, the management service detects changes to the system model and automatically updates local configuration files to be in sync.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

LogSearchMaximumResults

Integer

n/a

All permitted values

Yes

No

Maximum number of records returned when searching for logs.

LogSyncEnabled

boolean

true

All permitted values

Yes

No

Sets whether the background task for log synchronization is enabled.

LogUploadFilter

String

n/a

All permitted values

Yes

No

Filter for selecting the log files or directories to upload to the central repository so that they can be viewed or searched in the log viewer user interface.

LogUploadInterval

int

6

All permitted values

Yes

No

Frequency (in minutes) of the background log upload task.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

StabilityMonitorProperties

ManagementService.StabilityMonitorProperties

n/a

All permitted values

No

Yes

long description key not set

SystemDataCollectorProperties

ManagementService.SystemDataCollectorProperties

n/a

All permitted values

Yes

No

long description key not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UploadLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

Log records of this or higher level are uploaded to the configuration database.


ManagementService.StabilityMonitorProperties

The following properties are available for ManagementService.StabilityMonitorProperties:

Table 4-85 ManagementService.StabilityMonitorProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

StabilityMonitorEnabled

boolean

false

All permitted values

Yes

No

Is the Beehive Cluster Stability Monitor enabled


ManagementService.SystemDataCollectorProperties

The following properties are available for ManagementService.SystemDataCollectorProperties:

Table 4-86 ManagementService.SystemDataCollectorProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CollectionInterval

int

300

Min=1, Max=2147483647

Yes

No

Time interval between executions of system data collector background task

CollectorEnabled

boolean

false

All permitted values

Yes

No

Enables or disables the system data collector background task.

SystemDataFileRotationInterval

int

180

Min=1, Max=525600

Yes

No

System data collector will rotate file after this interval

SystemDataFileRotationSize

int

100

Min=1, Max=1024

Yes

No

Rotation size for the file generated by system data collector


MimService

The following properties are available for MimService:

Table 4-87 MimService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AutoOfflineTimeAfterClientDisconnect

int

86400

Min=600, Max=86400

Yes

No

When client is in disconnected mode and in 'away' state, this time would specify in sec when server would set 'offline' and cleanup everything including backend Instant Messaging sessions.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxInvalidLoginAttempt

int

3

Min=1, Max=5

Yes

No

Maximum number of LOGIN attempts before server closes the client connection. After opening a new connection, client can make only a certain maximum number of attempt to successfully LOGIN. If the maximum attempt reached and client fails then server closes the connection.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UnauthConnectionLiveTime

int

60

Min=30, Max=120

Yes

No

After client connects it has to finish authentication with in a specified amount time, otherwise server will cleanup the connection. This property would specify in second. how much time it would wait before closing the connection.


MobileDmService

The following properties are available for MobileDmService:

Table 4-88 MobileDmService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxClientConnections

int

1000

Min=100, Max=5000

Yes

No

Maximum number of concurrent mobile clients connections per Mobile DM Server instance.

MaxInvalidAttempts

int

3

Min=3, Max=10

Yes

No

Maximum number of invalid command attempts before the server closes the connection.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

TtlAuthenticated

int

30

Min=15, Max=60

Yes

No

Timeout for authenticated sessions in minutes.

TtlUnauthenticated

int

1

Min=1, Max=10

Yes

No

Timeout for non-authenticated sessions in minutes.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


NamedSystemObject

The following properties are available for NamedSystemObject:

Table 4-89 NamedSystemObject Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Name

String

n/a

All permitted values

Yes

No

the name of the system object.


NotificationDeliveryService

The following properties are available for NotificationDeliveryService:

Table 4-90 NotificationDeliveryService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ActionAskSettings

NotificationDeliveryService.ActionAskSettings

n/a

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.NotificationDeliveryServiceBundle, key ACTION_ASK_SETTINGS_LONG_DESCRIPTION

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DeliveryPoolSize

int

20

Min=1, Max=100

Yes

No

This value defines how many threads will be used for the delivery processing thread pool. The default value is 20.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxDeliveryStatusAge

int

15

Min=1, Max=365

Yes

No

This value defines how long delivery records will be retained in the system. The default value is 15 days.

MaxTrackingAge

int

15

Min=1, Max=365

Yes

No

Age to keep notification history to avoid duplicate notifications.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SmsSettings

NotificationDeliveryService.SmsSettings

n/a

All permitted values

Yes

No

Defines SMS settings.

SystemUserName

String

SYSTEM

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.NotificationDeliveryServiceBundle, key SYSTEM_USER_NAME_LONG_DESCRIPTION

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

XmsSettings

NotificationDeliveryService.XmsSettings

n/a

All permitted values

Yes

No

Defines the XMS credential settings used for SMS delivery when SmsMode is set to XMS.


NotificationDeliveryService.ActionAskSettings

The following properties are available for NotificationDeliveryService.ActionAskSettings:

Table 4-91 NotificationDeliveryService.ActionAskSettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ActionableEmailsNotificationDisabled

boolean

false

All permitted values

Yes

No

Disables actionable notification E-Mails.

ActionableIMsNotificationDisabled

boolean

false

All permitted values

Yes

No

Disables actionable notification Instant Messages.

ActionableNotificationReplyDisabled

boolean

false

All permitted values

Yes

No

Disables actionable notification responses.

ActionableNotificationUser

CollabId

n/a

All permitted values

Yes

No

Defines the actionable notification user identifier.

ActionableSMSNotificationDisabled

boolean

false

All permitted values

Yes

No

Disables actionable notification SMS.

ProcessingPoolSize

int

20

Min=1, Max=100

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.NotificationDeliveryServiceBundle, key ASK_PROCESSINGPOOL_SIZE_LONG_DESCRIPTION

UserCacheSize

int

512

Min=1, Max=2147483647

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.NotificationDeliveryServiceBundle, key ASK_USER_CACHE_LONG_DESCRIPTION


NotificationDeliveryService.SmsSettings

The following properties are available for NotificationDeliveryService.SmsSettings:

Table 4-92 NotificationDeliveryService.SmsSettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

MaxSmsChunks

int

5

Min=1, Max=255

Yes

No

This value defines the maximum number of chunks a single SMS can be broken into before it is truncated. The default value is 5.

ShortCode

String

 

All permitted values

Yes

No

Defines the SMS shortcode used for outbound SMS deliveries.

ShortCodeType

NotificationDeliveryService.SmsSettings.ShortCodeType (Legal values: INTERNATIONAL, NATIONAL, NETWORK, SUBSCRIBER, ALPHANUMERIC, ABBREVIATED)

INTERNATIONAL

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.NotificationDeliveryServiceBundle, key SMS_SHORT_CODE_TYPE_LONG_DESCRIPTION

SmartMessageCharacterCount

int

1000

Min=500, Max=10000

Yes

No

This value defines the maximum number of chunks a single SMS can be broken into before it is truncated. The default value is 5.

SmsMode

NotificationDeliveryService.SmsSettings.SmsMode (Legal values: XMS, SMPP)

SMPP

All permitted values

Yes

No

This value defines how the built-in SMS delivery handler will process SMS delivery requests. Possible values: XMS, SMPP. The default value is XMS.


NotificationDeliveryService.WebProxySettings

The following properties are available for NotificationDeliveryService.WebProxySettings:

Table 4-93 NotificationDeliveryService.WebProxySettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Enabled

boolean

false

All permitted values

Yes

No

Enables the usage of the web proxy settings for http/https requests.

ProxyHostName

String

n/a

All permitted values

Yes

No

Defines a hostname to be used as a proxy for all HTTP/HTTPS communication.

ProxyPassword

SecureString

n/a

All permitted values

Yes

No

Defines a password to be used for the web proxy.

ProxyPort

int

8080

All permitted values

Yes

No

Defines a port number to be used for all proxied HTTP/HTTPS communication. Default value: 8080

ProxyUserName

String

n/a

All permitted values

Yes

No

Defines a username to be used for the web proxy.


NotificationDeliveryService.XmsSettings

The following properties are available for NotificationDeliveryService.XmsSettings:

Table 4-94 NotificationDeliveryService.XmsSettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

WebProxySettings

NotificationDeliveryService.WebProxySettings

n/a

All permitted values

Yes

No

Defines the HTTP proxy which is used for SOAP based communications.

XmsPassword

SecureString

n/a

All permitted values

Yes

No

Password for XMS communication.

XmsServiceUrl

String

 

All permitted values

Yes

No

XMS service URL.

XmsUserName

String

n/a

All permitted values

Yes

No

Username for XMS communication.


ObjectEventPublisherService

The following properties are available for ObjectEventPublisherService:

Table 4-95 ObjectEventPublisherService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


Oc4j

The following properties are available for Oc4j:

Table 4-96 Oc4j Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdminPassword

SecureString

n/a

All permitted values

Yes

No

the password of the oc4j admin user

AdminUsername

String

oc4jadmin

All permitted values

Yes

No

the name of the oc4j admin user

Applications

Set<BeehiveJ2eeApplication> (Structural property)

n/a

All permitted values

Yes

No

The list of BeehiveJ2eeApplications associated with the Oc4j instance.

Database

Database

n/a

All permitted values

Yes

No

This database holds the configuration data and holds business data for any Enterprise that does not have its own dedicated storage.

Oc4jName

String

n/a

All permitted values

No

No

the name of the oc4j

PseudoTranslationEnabled

boolean

false

All permitted values

Yes

No

A Boolean flag that is used to enable/disable the pseudo-translation in Beehive Resource Bundle.

PseudoTranslationStrategy

String

n/a

All permitted values

Yes

No

The class name of pseudo translation algorithm that will be used for translation process by Beehive Resource Bundle.

ResourceAdapterInstances

Set<ResourceAdapterInstance> (Structural property)

n/a

All permitted values

Yes

No

The list of ResourceAdapterInstances associated with the Oc4j instance.

RmiClientTimeout

int

1200

Min=1, Max=2147483647

Yes

No

RMI client timeout value (in seconds) for this Oc4j.

RmiLookupTimeout

int

5000

Min=1, Max=10000

Yes

No

RMI lookup timeout value (in milliseconds) for this Oc4j.


OmaService

The following properties are available for OmaService:

Table 4-97 OmaService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CalendarSyncEnabled

boolean

true

All permitted values

Yes

No

Enables or disables calendar synchronization.

ContactsSyncEnabled

boolean

true

All permitted values

Yes

No

Enables or disables contacts synchronization.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DbLogKeepDays

int

7

Min=1, Max=2147483647

Yes

No

Number of days to keep the session log and SyncML message log in the database. Log entries older than this will be purged automatically.

DeviceMetaDataCacheSize

int

10000

Min=1, Max=2147483647

Yes

No

Maximum devices to cache.

DsSessionCacheSize

int

1000

Min=1, Max=2147483647

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key DSSESSION_CACHE_SIZE_LONG_DESCRIPTION

EmailNumberLimit

int

200

Min=1, Max=2147483647

Yes

No

The maximum number of e-mails that may be downloaded to a device. Together with the MaxSyncRangeBack property, the number of e-mails to download is restricted.

EmailSyncEnabled

boolean

true

All permitted values

Yes

No

Enables or disables e-mail synchronization.

EntitiesPerBulkLoad

int

25

Min=1, Max=1000

Yes

No

Maximum entities per bulk load.

EntitiesPerContactBulkLoad

int

25

Min=1, Max=1000

Yes

No

Maximum entities per contact bulk load.

EntitiesPerEmailBulkLoad

int

25

Min=1, Max=1000

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key ENTITIES_PER_EMAIL_BULK_LOAD_LONG_DESCRIPTION

EntitiesPerEventBulkLoad

int

25

Min=1, Max=1000

Yes

No

Maximum entities per event bulk load.

EntitiesPerNoteBulkLoad

int

25

Min=1, Max=1000

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key ENTITIES_PER_TASK_NOTE_LOAD_LONG_DESCRIPTION

EntitiesPerTaskBulkLoad

int

25

Min=1, Max=1000

Yes

No

Maximum entities per task bulk load.

EventSyncRangeValidationThreshold

int

51

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key THRESHOLD_WHERE_SYNC_RANGE_VALIDATION_STARTS_TO_OCCUR_FOR_EVENTS

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

LogSyncmlForUsers

String

 

All permitted values

Yes

No

Log SyncML for the these users. Specify a comma delimited list of user identifiers.

MaxConcurrentRequests

int

100

Min=1, Max=2147483647

Yes

No

The maximum number of concurrent requests that can be supported by a Oracle Mobile Data Sync Service instance. When this number is reached, subsequent synchronization requests will be refused until the number of concurrent requests drops below this number.

MaxConcurrentSessions

int

400

Min=1, Max=2147483647

Yes

No

The maximum number of concurrent Sync sessions that can be supported by a Oracle Mobile Data Sync Service instance. When this number is reached, subsequent requests to start a Sync will be refused until the number of ongoing Syncs drops below this number.

MaxConcurrentSlowSyncs

int

20

Min=1, Max=2147483647

Yes

No

The maximum number of concurrent slow syncs that can be supported by a Oracle Mobile Data Sync Service instance. When this number is reached, subsequent synchronization requests for a slow sync will be refused until the number of all ongoing slow Syncs becomes less than number.

MaxMessageSize

int

60000

Min=1000, Max=2147483647

Yes

No

Upper limit of the size of the messages exchanged between client and server in bytes. This value will be used if the MaxMessageSize value in a device profile exceeds this limit. Otherwise, the value in the device profile will be used.

MaxObjectSize

int

5000000

Min=1000, Max=2147483647

Yes

No

Upper limit of the size of the large objects exchanged between client and server in bytes. This value will be used if the MaxObjectSize value in a device profile exceeds this limit. Otherwise, the value in the device profile will be used.

MaxSyncRangeBack

int

365

Min=1, Max=2147483647

Yes

No

The number of days previous to the current date to synchronize.

MaxSyncRangeForward

int

365

Min=1, Max=2147483647

Yes

No

The number of days from the current date to synchronize.

Md5Required

boolean

false

All permitted values

Yes

No

Determines whether MD5 authentication is required (true) or if BASIC authentication is also allowed (false).

Md5Supported

boolean

false

All permitted values

Yes

No

Enables or disables support for MD5 authentication.

NotesSyncEnabled

boolean

true

All permitted values

Yes

No

Enables or disables Outlook Notes synchronization.

OmaDsEnabled

boolean

true

All permitted values

Yes

No

Enables or disables the Oracle Mobile Data Sync Service.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

ResumeEnabled

boolean

true

All permitted values

Yes

No

Enables or disables support for "Suspend and Resume" synchronization after incomplete or failed syncs. Improves performance with clients who support Resume for syncs.

RetriesWhenDbUnavailableDelayInMilliSec

String

1000,5000,9000

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key RETRIES_WHEN_DB_UNAVAILABLE_DELAY_IN_MILLISEC

SessionLogRequired

boolean

true

All permitted values

Yes

No

Enables or disables the logging of synchronization sessions in the database.

SessionTimeOut

int

6000

Min=1, Max=2147483647

Yes

No

A synchronization session will timeout if it does not receive a client request after this number of minutes.

SyncmlLogRequired

boolean

false

All permitted values

Yes

No

Enables or disables logging of SyncML messages in the database.

TaskSyncRangeValidationThreshold

int

51

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.OmaServiceResourceBundle, key THRESHOLD_WHERE_SYNC_RANGE_VALIDATION_STARTS_TO_OCCUR_FOR_TASKS

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


OmsResourceAdapter

The following properties are available for OmsResourceAdapter:

Table 4-98 OmsResourceAdapter Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ResourceAdapterImage

ResourceAdapterImage

n/a

All permitted values

No

Yes

ResourceAdapterImage associated with the ResourceAdapter

ResourceAdapterInstances

Set<ResourceAdapterInstance> (Structural property)

n/a

All permitted values

Yes

No

Set of instances of ResourceAdapter


OmsResourceAdapterInstance

The following properties are available for OmsResourceAdapterInstance:

Table 4-99 OmsResourceAdapterInstance Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ResourceAdapter

ResourceAdapter

n/a

All permitted values

No

No

ResourceAdapter associated with the instance


Opmn

The following properties are available for Opmn:

Table 4-100 Opmn Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BeehiveInstance

BeehiveInstance

n/a

All permitted values

Yes

No

BeehiveInstance associated with the OPMN

LocalPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

OPMN local port

OpmnCluster

OpmnCluster

n/a

All permitted values

Yes

No

OpmnCluster associated with the OPMN

RemotePort

int

n/a

Network Port, Min=1, Max=65536

Yes

No

OPMN remote port

RequestPort

int

n/a

Network Port, Min=1, Max=65536

Yes

No

OPMN request port


OpmnCluster

The following properties are available for OpmnCluster:

Table 4-101 OpmnCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

NotificationServerSslEnabled

boolean

false

All permitted values

Yes

No

Enables or disables Secure Socket Layers (SSL) for the notification server.

Opmns

Set<Opmn> (Structural property)

n/a

All permitted values

Yes

No

OPMNs associated with the OpmnCluster


OwcStreamingService

The following properties are available for OwcStreamingService:

Table 4-102 OwcStreamingService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

HttpTunnelingEnabled

Boolean

true

All permitted values

Yes

No

description bundle not set

HttpTunnelingPort

Integer

1954

Network Port, Min=1, Max=65536

Yes

No

description bundle not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxHttpTunnelingClientsAllowed

Integer

100

All permitted values

Yes

No

description bundle not set

MaxRtmpClientsAllowed

Integer

100

All permitted values

Yes

No

description bundle not set

MaxRtspClientsAllowed

Integer

100

All permitted values

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RtmpEnabled

Boolean

true

All permitted values

Yes

No

description bundle not set

RtmpPort

Integer

1935

Network Port, Min=1, Max=65536

Yes

No

description bundle not set

RtspEnabled

Boolean

true

All permitted values

Yes

No

description bundle not set

RtspPort

Integer

1554

Network Port, Min=1, Max=65536

Yes

No

description bundle not set

ServiceName

String

DANGSServer/2.0.1

All permitted values

Yes

Yes

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


PolicyService

The following properties are available for PolicyService:

Table 4-103 PolicyService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


PresenceService

The following properties are available for PresenceService:

Table 4-104 PresenceService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ActivityStartTimeThreshold

int

300000

All permitted values

Yes

No

description bundle not set

CacheSize

int

1024

All permitted values

Yes

No

description bundle not set

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

PollInterval

int

5

All permitted values

Yes

No

description bundle not set

PublicPresenceEnabled

boolean

true

All permitted values

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


PushMailService

The following properties are available for PushMailService:

Table 4-105 PushMailService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

HeartbeatInterval

int

300

Min=60, Max=600

Yes

No

Interval in seconds to send a keep-alive command to the IMAP Mail Server to keep the IMAP connection alive.

IMAPConnLiveTime

int

720

Min=5, Max=1440

Yes

No

Backend IMAP connection live time, in minutes after a device connection dies.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxConcurrentUsers

int

2000

Min=2, Max=5000

Yes

No

Maximum number of concurrent mobile clients connections per Mobile Mail Server instance.

MaxInboxMessages

int

200

Min=200, Max=1000

Yes

No

Maximum number of inbox messages allowed to sync to device. This is the absolute maximum view filter size, no matter what value the Mobile Client specifies.

MaxMessageSize

int

50

Min=50, Max=200

Yes

No

Maximum message size, in KB, which a user may sync to a device. This is the absolute maximum size, no matter what value the Mobile Client specifies.

NumberDaysPast

int

7

Min=7, Max=14

Yes

No

Maximum number of days past user can fetch messages to sync to their device. This is the absolute maximum days view filter size, no matter what value the Mobile Client specifies.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


PushService

The following properties are available for PushService:

Table 4-106 PushService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

APNSSettings

PushService.APNSSettings

n/a

All permitted values

Yes

No

Defines the Apple Push Nofication Service settings.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxClientConnections

int

1000

Min=100, Max=5000

Yes

No

Maximum number of concurrent mx-based clients connections per Mobile Push Server instance.

MaxInvalidAttempts

int

3

Min=3, Max=10

Yes

No

Maximum number of invalid command attempts before the server closes the connection.

MaxTruePushClientConnections

int

100

Min=1, Max=1000

Yes

No

Maximum number of concurrent HTTP true push-based clients connections per Mobile Push Server instance.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

TtlUnauthenticated

int

1

Min=1, Max=10

Yes

No

Timeout for non-authenticated sessions in minutes.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


PushService.APNSSettings

The following properties are available for PushService.APNSSettings:

Table 4-107 PushService.APNSSettings Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

APNSEnabled

boolean

false

All permitted values

Yes

No

Indicates if APNS is enabled as an outbound channel.

APNSHostName

String

gateway.push.apple.com

All permitted values

Yes

No

Defines the hostname of the APNS gateway.

APNSKeyStoreContents

byte[]

n/a

All permitted values

Yes

No

Contents of the .p12 file that contains the APNS certificate and private key.

APNSPort

int

2195

All permitted values

Yes

No

Defines the port of the APNS gateway. Default value is: 2195

ProxyEnabled

boolean

false

All permitted values

Yes

No

Enables the usage of the web proxy settings for http/https requests.

ProxyHostName

String

n/a

All permitted values

Yes

No

Defines a hostname to be used as a proxy for all HTTP/HTTPS communication.

ProxyPassword

SecureString

n/a

All permitted values

Yes

No

Defines a password to be used for the web proxy.

ProxyPort

int

8080

All permitted values

Yes

No

Defines a port number to be used for all proxied HTTP/HTTPS communication. Default value: 8080

ProxyUserName

String

n/a

All permitted values

Yes

No

Defines a username to be used for the web proxy.


RecordsManagementService

The following properties are available for RecordsManagementService:

Table 4-108 RecordsManagementService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

Urm

Urm

n/a

All permitted values

Yes

No

Records Management Service uses Oracle Universal Records Manager for records management. The URM configuration includes host, port, admin user account details, and agent name of the URM deployment. There can be at most one URM configured in the system.


RemoteContentService

The following properties are available for RemoteContentService:

Table 4-109 RemoteContentService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DiskSpoolDirectory

String

beehive/rcsspool

All permitted values

Yes

No

description bundle not set

KeystoreAlias

String

n/a

All permitted values

Yes

No

description bundle not set

KeystoreAliasPassword

SecureString

n/a

All permitted values

Yes

No

description bundle not set

KeystoreFile

String

n/a

All permitted values

Yes

No

description bundle not set

KeystorePassword

SecureString

n/a

All permitted values

Yes

No

description bundle not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxDiskSpoolSpace

int

209715200

All permitted values

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UCMConnectionTimeout

int

30000

All permitted values

Yes

No

description bundle not set

UCMDefaultSearchMaxResults

int

250

All permitted values

Yes

No

description bundle not set

UCMMaxConnections

int

45

All permitted values

Yes

No

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

WebDAVMaxConnPerHost

int

15

All permitted values

Yes

No

description bundle not set

WebDAVMaxTotalConns

int

45

All permitted values

Yes

No

description bundle not set


RemoteSite

No other properties exist for RemoteSite .

ResourceAdapter

The following properties are available for ResourceAdapter:

Table 4-110 ResourceAdapter Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ResourceAdapterImage

ResourceAdapterImage

n/a

All permitted values

No

Yes

ResourceAdapterImage associated with the ResourceAdapter

ResourceAdapterInstances

Set<ResourceAdapterInstance> (Structural property)

n/a

All permitted values

Yes

No

Set of instances of ResourceAdapter


ResourceAdapterImage

The following properties are available for ResourceAdapterImage:

Table 4-111 ResourceAdapterImage Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

RarFileName

String

n/a

All permitted values

No

Yes

Resource Adapter Filename

ResourceAdapterInterface

String

n/a

All permitted values

No

Yes

Management model interface name for Resource Adapter


ResourceAdapterInstance

The following properties are available for ResourceAdapterInstance:

Table 4-112 ResourceAdapterInstance Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ResourceAdapter

ResourceAdapter

n/a

All permitted values

No

No

ResourceAdapter associated with the instance


ResourceDirectoryService

The following properties are available for ResourceDirectoryService:

Table 4-113 ResourceDirectoryService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AllResourcesReadableByAll

Boolean

false

All permitted values

Yes

No

When true, all resources are considered readable by everyone. When false, explcit access control checks are made to determine the access.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SearchSizeLimit

Integer

20000

All permitted values

Yes

No

The maximum number of resource entries to be returned on a list operation. This setting can affect the results of some system administration commands.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


RmServletService

The following properties are available for RmServletService:

Table 4-114 RmServletService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SAMLIdentity

The following properties are available for SAMLIdentity:

Table 4-115 SAMLIdentity Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

KeyAlias

String

n/a

All permitted values

Yes

No

Specifies the alias for the certificate of the SAML issuer.

Service

boolean

false

All permitted values

Yes

No

Specifies whether the SAML issuer is a trusted service or not. (It is a SAML IdP if it is not a service.)


SearchService

The following properties are available for SearchService:

Table 4-116 SearchService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AttachmentMimetypeBlackList

String

image/,application/ics

All permitted values

Yes

No

This parameter specifies a comma-separated list of attachment mime-types to be discarded from indexing. When processing attachments, for example email attachments, if the mime-type of the attachment starts with one of the specified mime-types, it will be discarded and, as such, its content will not be indexed.

CaptureChanges

String

true

All permitted values

Yes

No

Start or stop the change capture for the search service

ChangeCaptureUserList

String

 

All permitted values

Yes

No

List of Collab Ids of users or groups for which change capture is allowed. The entries in the list can be seprated by whitespaces (space or tab), comma or a new line. Empty list signifies no restriction.

CrawlJobMaxNapTime

Integer

120

This property has a customized constraint.

Yes

No

The maximal nap time for crawl job. This is the same as long nap time, and short nap time is 50% of the maximal nap time.

CrawlJobThreshold

Integer

5000

This property has a customized constraint.

Yes

No

The threshold of crawl job processing amount. If current run processed more than threshold amount of feeds, crawl job will not nap. If less than threshold, crawl job will take a short nap. If no feeds, crawl job will take a long nap.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

IndexFragmentationThreshold

Integer

10

This property has a customized constraint.

Yes

No

The index fragmentation threshold. If current fragmentation level is lower than the threshold, index optimization will not happen. Default to 10.

IndexJobMaxNapTime

Integer

120

This property has a customized constraint.

Yes

No

The maximal nap time for index job. This is the same as long nap time, and short nap time is 50% of the maximal nap time.

IndexJobThreshold

Integer

5000

This property has a customized constraint.

Yes

No

The threshold of index job processing amount. If current run processed more than threshold amount of feeds, index job will not nap. If less than threshold, index job will take a short nap. If no feeds, index job will take a long nap.

IndexOptimizationInterval

Integer

0

This property has a customized constraint.

Yes

No

The interval in days between index optimizations with FULL mode. 0 means disabled.

IndexOptimizationMaxTime

Integer

480

This property has a customized constraint.

Yes

No

The maximal time in minutes that can be spent on each index optimization with FULL mode. Default to 480 minutes.

IndexOptimizationStartDate

String

2010-08-01,00:00:00

This property has a customized constraint.

Yes

No

Start date of index optimization in DB time, format is 'YYYY-MM-DD,HH24:MI:SS'. Default to next Sunday 00:00:00.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxResults

Integer

1000

This property has a customized constraint.

Yes

No

Maximum number of search results returned by the search service

MaxSnippetEntitySize

Integer

4096

This property has a customized constraint.

Yes

No

The maximum entity size for snippet computation. Value is specified in Bytes. The range is between 0 and 32767Bytes. 0 indicates no snippet computation. Any nonzero value will compute snippets for entities whose size is upto the value specified in the property.Default is 4096

MdataOptimizationInterval

Integer

0

This property has a customized constraint.

Yes

No

The interval in days between mdata optimizations. 0 means disabled.

ParallelQueryDegree

Integer

0

Min=0, Max=15

Yes

No

This parameter is used for improving multi-workspace query performance. It determines how many threads a search query can use per database RAC node dedicated for search (as configured in the search Data-Source). Parallel query is NOT used if one of the following conditions is true: (1) the QueryWithSearchDataSource property is set to false, (2) this parameter is set to 0 (default), or (3) the query is in a single workspace or a set of workspaces in the same partition. When the value of this parameter is 1 and the workspaces correspond to partitions on different RAC nodes, search service spawns one thread per RAC node, each of which executes the query for the set of partitions that is affinitized to the given RAC node, and the results are combined in mid-tier. Currently 0 and 1 are the only supported values. In future release we may allow a value N that is greater than one, when search service can use up to N threads for each RAC node, if the workspaces to query in a RAC node fall in multiple partitions.

ParallelQueryPoolSize

Integer

100

This property has a customized constraint.

Yes

No

This parameter determines the size of the thread-pool from which all parallel search queries will be spawned. This sets the maximum total number of concurrently running threads for search queries.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SearchDisclaimerText

Map<String,String>

n/a

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SearchBundle, key SEARCH_DISCLAIMER_LONG_DESC

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

WildcardChar

String

*

All permitted values

Yes

No

Specify the wildcard character for search (Default is *)


Server

The following properties are available for Server:

Table 4-117 Server Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AlternateHostNames

Collection<String>

n/a

All permitted values

Yes

No

A list of alternate host names for the Server. A Server may have multiple host names, for example if there are multiple network interface cards installed.

BeehiveInstances

Set<BeehiveInstance> (Structural property)

n/a

All permitted values

Yes

No

The list of BeehiveInstances associated with the Server.

PrimaryHostName

String

n/a

All permitted values

Yes

No

The primary host name of this Server.

SipListenerIPAddress

String

127.0.0.1

IP Address

Yes

No

The IP address of the Sip listener. Required for Sip integration


Service

The following properties are available for Service:

Table 4-118 Service Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SesEndptService

The following properties are available for SesEndptService:

Table 4-119 SesEndptService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

Host

String

changethis

All permitted values

Yes

No

The host portion of the url to access the SES endpoint web service.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxNoUsersContainsOper

int

5

All permitted values

Yes

No

When SES users do advanced search with Contains operator for creator name, modifier name, participants, the SES Endpoint searches in the directory for usernames containing the user given string. This parameter restricts the number of such matches.

Port

int

0

All permitted values

Yes

No

The port portion of the url to access the SES endpoint web service.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SesEndptServiceEnabled

boolean

false

All permitted values

Yes

No

Enables or disables the SES endpoint service.

SesTrustedEntityMap

Map<String,SecureString>

n/a

All permitted values

Yes

No

The trusted entity name and password of the SES brokers are stored in this map.The BEECTL command add_trusted_identity is used to add trusted entity credentials which are stored in this map.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SipContainer

The following properties are available for SipContainer:

Table 4-120 SipContainer Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ManagedOc4j

ManagedOc4j

n/a

All permitted values

Yes

No

Oc4j associated with the SipContainer

SipEnabled

boolean

true

All permitted values

Yes

No

long description key not set

SipPortMaxValue

int

5080

Network Port, Min=1, Max=65536

Yes

No

Maximum permitted value for SIP protocol port

SipPortMinValue

int

5060

Network Port, Min=1, Max=65536

Yes

No

Minimum permitted value for SIP protocol port


SipGateway

The following properties are available for SipGateway:

Table 4-121 SipGateway Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

GatewayIPAddress

String

n/a

IP Address

Yes

No

IP address of the SIP Gateway

GatewayPort

int

n/a

Network Port, Min=1, Max=65536

Yes

No

Port used to establish outbound connections from site to SIP Gateway

SipGatewayCluster

SipGatewayCluster

n/a

All permitted values

No

No

SipGatewayCluster associated with the SipGateway


SipGatewayCluster

The following properties are available for SipGatewayCluster:

Table 4-122 SipGatewayCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SipGateways

Set<SipGateway> (Structural property)

n/a

All permitted values

Yes

No

Set of SIP gateways associated with the SipGatewayCluster


Site

The following properties are available for Site:

Table 4-123 Site Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BeehiveRootLogger

String[]

[oracle.beehive., oracle.csi.]

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SystemModelBundle, key SITE_BEEHIVE_ROOT_LOGGER_LONG_DESC

BtiGlobalConfiguration

BtiGlobal

n/a

All permitted values

Yes

No

The global Bti configuration

BusinessDatabase

Database

n/a

All permitted values

Yes

No

A database where business data is stored. An Enterprise may be configured with its own business database. If an Enterprise does not have its own database configured, then the business data for that Enterprise gets stored in the Site level BusinessDatabase

CipherKey

SecureString

n/a

All permitted values

Yes

No

description bundle not set

ClusteringEnabled

Boolean

true

All permitted values

Yes

No

If application clustering is enabled for the site

ConfigurationDatabase

Database

n/a

All permitted values

Yes

No

The database where system configuration is stored

Database

Database

n/a

All permitted values

Yes

Yes

This database holds the configuration data and holds business data for any Enterprise that does not have its own dedicated storage.

DatabaseRetryIntervalList

List<Integer>

[1000, 5000, 9000]

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DiagnosabilitySettings

DiagnosabilitySettings

n/a

All permitted values

Yes

No

The Diagnosability settings

DiagnosticDatabase

Database

n/a

All permitted values

Yes

No

The database where diagnostic data is stored

EnterpriseId

int

54321

All permitted values

Yes

Yes

The enterprise id

Enterprises

Set<Enterprise> (Structural property)

n/a

All permitted values

Yes

No

The set of Enterprise associated with the Site.

EventListenerDatabase

Database

n/a

All permitted values

Yes

No

The database where Event Listener data is stored

HttpServerCluster

HttpServerCluster

n/a

All permitted values

Yes

Yes

The HttpServerCluster associated with this Site.

LanguagePack

byte[]

n/a

All permitted values

Yes

No

The Beehive language pack

LdapServer

LdapServer

n/a

All permitted values

Yes

No

An external LDAP server which can be a source of information that gets synchronized into Beehive and can be used by the Authentication Service to authenticate users.

ManagedOc4jCluster

ManagedOc4jCluster

n/a

All permitted values

Yes

Yes

The ManagedOc4jCluster associated with this Site.

Name

String

n/a

All permitted values

Yes

No

the name of the system object.

OpmnCluster

OpmnCluster

n/a

All permitted values

Yes

Yes

The OpmnCluster associated with the Site.

ReadOnlyBusinessDatabase

Database

n/a

All permitted values

Yes

No

A database where read-only business data is stored. An Enterprise may be configured standby database read-only database access. If an Enterprise does not have read-only database configured, then the read-only data for that Enterprise accesses using BusinessDatabase

RemoteSites

Set<RemoteSite> (Structural property)

n/a

All permitted values

Yes

No

The set of RemotesSite associated with the Site.

ResourceAdapters

Set<ResourceAdapter> (Structural property)

n/a

All permitted values

Yes

No

The set of ResourceAdapters associated with the Site.

SearchDatabase

Database

n/a

All permitted values

Yes

No

The database where Search data is stored

Servers

Set<Server> (Structural property)

n/a

All permitted values

Yes

No

The set of Servers associated with the Site.

Services

Set<Service> (Structural property)

n/a

This property has a customized constraint.

Yes

No

The set of Services associated with the Site.

SipGatewayCluster

SipGatewayCluster

n/a

All permitted values

Yes

Yes

The SipGatewayCluster associated with this Site.

SiteId

int

54321

All permitted values

Yes

Yes

The site id.

SsoKeyAlias

String

n/a

All permitted values

Yes

No

description bundle not set

UnmanagedOc4js

Set<UnmanagedOc4j> (Structural property)

n/a

All permitted values

Yes

No

The set of UnmanagedOc4js associated with the Site.

VirtualServer

VirtualServer

n/a

All permitted values

Yes

No

The VirtualServer associated with the Site.

VirusScanEngineCluster

VirusScanEngineCluster

n/a

All permitted values

Yes

Yes

The cluster of virus scan engines associated with this Site. All engines in the cluster are of the same type, i.e. provided by the same vendor.


Site.DiagnosabilityProperties

No other properties exist for Site.DiagnosabilityProperties .

SmppDeliveryService

The following properties are available for SmppDeliveryService:

Table 4-124 SmppDeliveryService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MoSMSEnabled

boolean

true

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.SmppDeliveryServiceBundle, key SMPP_ENABLE_MO_LONG_DESCRIPTION

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

ShortCodeNumberPlanIndicator

int

-1

Min=-1, Max=255

Yes

No

Defines the Numbering Plan Indicator used by the shortcode for the outbound SMS deliveries.

SmppConnectionCount

int

1

All permitted values

Yes

No

The maximum number of active SMPP connections. This may be more or less than the number of SMPP Delivery Service instances.

SmppEnquireTime

int

45

Min=1, Max=59

Yes

No

The interval in seconds between sending Enquire Link Protocol Data Units to Short Message Service Center.

SmppPassword

SecureString

n/a

All permitted values

Yes

No

The SMPP system password assigned by the Short Message Service Center.

SmppProcessingThreadCount

int

25

All permitted values

Yes

No

Controls the number of threads allocated for background processing of incoming SMS delivery requests.

SmppServiceUrl

String

 

All permitted values

Yes

No

Defines a hostname/port URL for the SMPP server. Format: host:port Example: smpp.somehost.com:2775 Default port: 2775 (smpp), 3550 (ssmpp)

SmppSystemID

String

 

All permitted values

Yes

No

The SMPP system ID assigned by the Short Message Service Center.

SmppSystemType

String

 

All permitted values

Yes

No

The SMPP system sype assigned by the Short Message Service Center.

SmppTimeOut

int

15

Min=1, Max=59

Yes

No

The time in seconds the SMPP client will wait for a response from the Short Message Service Center before closing the connection.

TlsEnabled

boolean

false

All permitted values

Yes

No

Enables or disables TLS support for SMPP connections. Enable if required by the Short Message Service Center.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UseQuerySMForStatus

boolean

false

All permitted values

Yes

No

Enables or disables the use of QUERY_SM PDU for delivery status reporting.

VersionNumber

SmppDeliveryService.VersionNumber (Legal values: VERSION_33, VERSION_34, VERSION_5)

VERSION_5

All permitted values

Yes

No

Defines which SMPP protocol version will be advertised in the BIND requests. Some providers will reject the BIND request if the protocol version is not one of their supported versions..


SoftwareImage

No other properties exist for SoftwareImage .

StateManageable

No other properties exist for StateManageable .

StatusManageable

No other properties exist for StatusManageable .

SubscriptionActionService

The following properties are available for SubscriptionActionService:

Table 4-125 SubscriptionActionService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SubscriptionService

The following properties are available for SubscriptionService:

Table 4-126 SubscriptionService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxAnchorAgeInDays

int

30

Min=1, Max=30

Yes

No

Maximum allowed anchor age in days when querying "getElementModifications". AnchorToooldException will be thrown if the anchor passed in getElementModifications is older than the maximum allowed anchor age (in days) in configuration.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SyndicationService

The following properties are available for SyndicationService:

Table 4-127 SyndicationService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SyndicationServletService

The following properties are available for SyndicationServletService:

Table 4-128 SyndicationServletService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthenticationScheme

String

BASIC

This property has a customized constraint.

Yes

No

Default authentication scheme for Syndication Servlet. Accepted values are: BASIC, DIGEST, SSO

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


SystemObject

No other properties exist for SystemObject .

SystemObjectWithHelper

No other properties exist for SystemObjectWithHelper .

SystemObjectWithStats

No other properties exist for SystemObjectWithStats .

TCPCommBasedScanEngine

The following properties are available for TCPCommBasedScanEngine:

Table 4-129 TCPCommBasedScanEngine Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ScanEngineClientCommPort

Integer

1344

Network Port, Min=1, Max=65536

Yes

No

Communication port used by Beehive for sending client requests to the third-party scan engine.

ScanEngineHostName

String

localhost

All permitted values

Yes

No

Hostname of the server where the third-party scan engine is installed.

VirusScanEngineCluster

VirusScanEngineCluster

n/a

All permitted values

No

No

A VirusScanEngineCluster is made up of scan engines of the same type, i.e by the same provider, configured for the Site or Enterprise. This property shows the VirusScanEngineCluster that this engine belongs to.


TCPCommBasedScanEngineCluster

The following properties are available for TCPCommBasedScanEngineCluster:

Table 4-130 TCPCommBasedScanEngineCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CacheRefreshInterval

Long

600000

This property has a customized constraint.

Yes

No

The interval at which Beehive VirusScanner process refreshes its in-memory cache with data from the virus defnitions storage.

GatherDetailedStats

Boolean

true

All permitted values

Yes

No

Indicator to determine if detailed stats related to virusscanner needs to be captured. These stats include method stats.

OverrideEngineResultEnabled

Boolean

false

All permitted values

Yes

No

Indicates if Beehive should over-ride certain return scan statuses. This will allow Beehive to treat what the scan engine considers as INFECTED as CLEAN.

ScanEngineCommProtocol

VirusScanEngineCluster.ScanEngineCommProtocol (Legal values: ICAP, CUSTOM)

ICAP

All permitted values

Yes

Yes

The protocol used by Beehive to communicate with the third-party scan service engine.

ScanEngineCommProtocolVer

String

1.0

All permitted values

Yes

Yes

The version of the protocol used to communicate with the third-party scan service.

ScanEngines

Set<VirusScanEngine> (Structural property)

n/a

All permitted values

Yes

No

The set of virus scan engines, of the same type, that are part of this cluster.

ScanServiceProvider

VirusScanEngineCluster.ScanServiceProvider (Legal values: Symantec, TrendMicro, McAfee)

Symantec

All permitted values

Yes

Yes

Engines in a cluster are of the same type and are supplied by this third-party virus scan service provider.

VirusScanPolicy

VirusScanConfigurable.VirusScanPolicy (Legal values: NO_SCAN_OR_REPAIR, SCAN_ONLY, SCAN_AND_REPAIR)

NO_SCAN_OR_REPAIR

All permitted values

Yes

No

Scan policy configured for Beehive. If the policy is set to SCAN_ONLY is set and a request to scan and repair is received, caller will receive an exception.

VirusesToIgnore

List<String>

n/a

All permitted values

Yes

No

List of viruses that Beehive can choose to ignore and treat as un-infected. This list will only be evaluated if the the OverrideEngineResultEnabled is also set to true.


TeamCollaborationApisService

The following properties are available for TeamCollaborationApisService:

Table 4-131 TeamCollaborationApisService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


TeamCollaborationService

The following properties are available for TeamCollaborationService:

Table 4-132 TeamCollaborationService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AsyncThreadPoolSize

int

10

This property has a customized constraint.

Yes

No

The number of threads in the thread pool, used while updating non time-critical data such as page view count and discussions forum change status. Deployments that typically find that the page view count and discussions change status take too long to be updated may improve this behavior by increasing this number above the default. On the other hand, those deployments that anticipate very low concurrent access to the application may benefit by decreasing this value below the default.

CSRFSecurityEnabled

boolean

true

All permitted values

Yes

No

This parameter determines whether the server checks if the CSRF token supplied in the request by the client is valid. If true, it compares the server-side token with the client's; if false, just bypass the validation.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

ExecutorServiceThreadPoolSize

int

50

Min=1, Max=1023

Yes

No

The number of threads in the thread pool for ExecutorService, used for parallel loading of contents in pages such as home, overview, and profile. Those pages contain mixed contents and typically require multiple CSI/database calls to generate the response. Thus they are designed to spawn several threads in the ExecutorService thread pool to load the contents concurrently.

HelpLink

String

http://www.oracle.com/technology/products/beehive/beehive_users/2_0/teamcollab.htm

All permitted values

Yes

No

A configurable link to help text for Beehive clients.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxWkspLogoSize

int

1024

This property has a customized constraint.

Yes

No

Specifies the maximum logo size in KB for workspaces. This value is used when uploading new logos. Only logo images of size smaller than this value is allowed.

MultiTypeListingBatchSize

int

100

This property has a customized constraint.

Yes

No

This number applies to table listings such as recent activity or tagged entities, which includes many types in one table. Default value is set as 100, but is recommended to be increased (always in multiples of 25) on deployments where the primary usage comes from workspaces client.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RichTextAntiSamyEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not Rich Text descriptions will be filtered by AntiSamy prior to display in the Team Collaboration Client to remove potentially malicious xhtml and javascript. Valid values: true, false

RichTextAntiSamyPolicyFilePath

String

oracle/ocs/amshare/util/antisamy-strict.xml

All permitted values

Yes

No

Path to the AntiSamy policy xml file, used to configure the AntiSamy XHTML filtering of Rich Text descriptions. The path may be absolute or relative to the Beehive home directory.

SearchResultsBatchSize

int

10

This property has a customized constraint.

Yes

No

This number is similar to MultiTypeListingBatchSize but only applies to search results. Default value is set as 10, and the value should always be in multiples of 10.

TacitEnabled

boolean

false

All permitted values

Yes

No

This parameter determines whether the tacit related UI modules are displayed. By default, it is true. If set to false, all the tacit related UI modules like Connection Requests, Search Interests and Expertise, Interests and Expertise modules are hidden.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


TimeManagementService

The following properties are available for TimeManagementService:

Table 4-133 TimeManagementService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ConsistencyTasksEnabled

Boolean

true

All permitted values

Yes

No

Enables or disables Time Management consistency background tasks. When enabled, the system will automatically perform various verifications and adjustments to ensure consistency.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

EnableCleanupTask

Boolean

true

All permitted values

Yes

No

Enables or disables some Oracle Beehive housekeeping cleanup processes. These cleanup tasks include the physical removal of purged resources, meetings and tasks, and typically occur about one month after the system purges such entities.

EnableDynamicParticipants

Boolean

true

All permitted values

Yes

No

Enables or disables the dynamic aspect of composite participants, such as groups and team workspaces. When enabled, future instances of meetings and tasks that include groups or team workspaces as participants will be adjusted automatically to reflect any membership changes.

EnableExternalParticipantNotificationDelivery

Boolean

true

All permitted values

Yes

No

Enables or disables the delivery of notifications to external participants. When enabled, external participants of meetings and tasks will receive e-mail notifications to inform them of new or updated invitations and assignments. Notification e-mails can include iCalendar attachments.

EnableExternalParticipantNotificationsWithIMIP

Boolean

true

All permitted values

Yes

No

Send external mail notifications for meetings that are formatted with iMIP information so that the external recipients can easily import them into their own calendar when using a client that is iMIP capable. This option offers better interoperability with MS Outlook and Google Calendar but the default option (false) is more widely supported.

EnableGenericClassOfTMBusinessEvents

Boolean

false

All permitted values

Yes

No

Enables or disables the generic Time Management business event integration. Does not apply to business events prefixed by TM_, which are raised independently of this property's setting. Enabling generic business events has performance implications.

EnablePresenceIntegration

Boolean

true

All permitted values

Yes

No

Enables or disables presence integration. When enabled, the system will automatically set users' presence settings to "In a meeting" during the periods they are scheduled to attend meetings created in Oracle Beehive.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxOccurrencesForUnboundedRecurrence

int

75

All permitted values

Yes

No

Maximum number of occurrences allowed for recurring meetings where the number of occurrences is unspecified. When a recurrence rule is defined during the creation of a new meeting, if the rule does not explicitly specify an end date or a number of occurrences, the number of occurrences created is limited to no more than this value. It is not recommended to increase it to a value above 100 as many Calendar interfaces will create recurring meetings without explicitly specifying a limit and this value will be used. This could cause scalability issues in some calendaring flows. Users that need recurring meetings with more occurrences can explicitly request up to MaxOccurrencesPerSeries occurrences. The recommended value is 75.

MaxOccurrencesPerSeries

Integer

150

All permitted values

Yes

No

Maximum number of occurrences allowed for any recurring meeting. This value must be greater or equal to MaxOccurrencesForUnboundedRecurrence. Increasing this value can cause scalability issues in some server flows or client flows. It is not recommended to increase this value above 250 as loading such large meetings will cause side effects or delays in some calendar interfaces. The recommended value is 150.

MaxSubscriptionBizEventRaisedPerOperation

int

500

All permitted values

Yes

No

No subscription business events are raised for any TM operation that tries to raise more than this limit. This is to reduce the potential load caused by having to raise too many business events for large operations. It is currently only supported for operations relating to meetings and calendars.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SystemBusyPeriod

TimeManagementService.SystemBusyPeriod

n/a

All permitted values

Yes

No

Defines time periods during which certain non-essential background tasks should not be run. You can define periods for each day, set an entire day to busy, and use the property 'CanRunDuringSystemBusyPeriod' to allow certain tasks to be run during defined busy periods.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


TimeManagementService.AccessControlComputationTaskProperties

No other properties exist for TimeManagementService.AccessControlComputationTaskProperties .

TimeManagementService.ChangeLogsCleanupTaskProperties

The following properties are available for TimeManagementService.ChangeLogsCleanupTaskProperties:

Table 4-134 TimeManagementService.ChangeLogsCleanupTaskProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.ContainerSyncTaskProperties

No other properties exist for TimeManagementService.ContainerSyncTaskProperties .

TimeManagementService.MethodMonitoringCleanupTaskProperties

The following properties are available for TimeManagementService.MethodMonitoringCleanupTaskProperties:

Table 4-135 TimeManagementService.MethodMonitoringCleanupTaskProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.PurgedItemsCleanupProperties

The following properties are available for TimeManagementService.PurgedItemsCleanupProperties:

Table 4-136 TimeManagementService.PurgedItemsCleanupProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.ResourceCleanupProperties

The following properties are available for TimeManagementService.ResourceCleanupProperties:

Table 4-137 TimeManagementService.ResourceCleanupProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.ResourceConsistencyProperties

The following properties are available for TimeManagementService.ResourceConsistencyProperties:

Table 4-138 TimeManagementService.ResourceConsistencyProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.StandardContextCleanupProperties

The following properties are available for TimeManagementService.StandardContextCleanupProperties:

Table 4-139 TimeManagementService.StandardContextCleanupProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CanRunDuringSystemBusyPeriod

Boolean

false

All permitted values

Yes

No

Enables or disbales running the task during the configured system busy period (see property SystemBusyPeriod). When disabled (false), the task will not be allowed to run during the defined SystemBusyPeriod; it will only be run outside that period.


TimeManagementService.SystemBusyPeriod

The following properties are available for TimeManagementService.SystemBusyPeriod:

Table 4-140 TimeManagementService.SystemBusyPeriod Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Friday

String

7:00-24:00

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Monday

String

7:00-24:00

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Saturday

String

NotBusy

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Sunday

String

NotBusy

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Thursday

String

7:00-24:00

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Tuesday

String

7:00-24:00

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.

Wednesday

String

7:00-24:00

This property has a customized constraint.

Yes

No

Defines, for this day, the period(s) during which certain non-essential background tasks should not be run. You can set 'XX:XX-YY:YY' to represent a 24h time range, 'BusyAllDay' to block the whole day, or 'NotBusy' to make the whole day available for such tasks.


TimeZoneService

The following properties are available for TimeZoneService:

Table 4-141 TimeZoneService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


TimeZoneService.DatabaseConfiguration

No other properties exist for TimeZoneService.DatabaseConfiguration .

TranscodingService

The following properties are available for TranscodingService:

Table 4-142 TranscodingService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ArchiveFolderPath

String

/INBOX

All permitted values

Yes

No

description bundle not set

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


UdsCache

The following properties are available for UdsCache:

Table 4-143 UdsCache Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


UdsCacheService

The following properties are available for UdsCacheService:

Table 4-144 UdsCacheService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BatchInterval

int

5

All permitted values

Yes

No

description bundle not set

BatchLoadSize

int

1000

Min=100, Max=10000

Yes

No

description bundle not set

CacheEnabled

boolean

false

All permitted values

Yes

No

description bundle not set

CacheInitEnabled

boolean

false

All permitted values

Yes

No

description bundle not set

CacheUpdateEnabled

boolean

false

All permitted values

Yes

No

description bundle not set

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxHeapPercent

int

50

Min=10, Max=100

Yes

No

description bundle not set

MaxResultCount

int

10000

Min=100, Max=2147483647

Yes

No

description bundle not set

PollingInterval

int

3600

Min=60, Max=2147483647

Yes

No

description bundle not set

PollingLoopThreshold

int

100

Min=1, Max=9999

Yes

No

description bundle not set

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RetryPollingInterval

int

60

Min=5, Max=1003600

Yes

No

description bundle not set

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


UnmanagedBeehiveInstance

The following properties are available for UnmanagedBeehiveInstance:

Table 4-145 UnmanagedBeehiveInstance Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AvailableNumberOfProcessors

int

1

This property has a customized constraint.

Yes

No

The number of processors committed for the current Oracle Beehive instance. This figure is used by the sizing algorithm to calculate the number of server and client Beehive Transport Infrastructure (BTI) workers, as well as the Oracle Containers for Java (OC4J) instances, required to support the current Oracle Beehive instance.

AvailablePhysicalMemoryInMB

Integer

n/a

This property has a customized constraint.

Yes

No

The amount of physical memory in megabytes (MBs) committed for the current Oracle Beehive instance. This figure is used by the sizing algorithm to calculate the number of Oracle Containers for Java (OC4J) instances required for the current Oracle Beehive instance.

BeehiveInstanceName

String

n/a

All permitted values

Yes

Yes

The name of the current Oracle Beehive instance.

Bti

Bti

n/a

All permitted values

Yes

No

The Oracle Beehive Transport Infrastructure (BTI) associated with the current Oracle Beehive instance.

DiagnosabilitySettings

DiagnosabilitySettings

n/a

All permitted values

Yes

No

A reference to a SystemObject that holds the properties used to configure diagnosability functionality. You do not directly modify the value of this property. You modify the properties of the referenced DiagnosabilitySettings object.

HttpServer

HttpServer

n/a

All permitted values

Yes

No

A reference to the HttpServer SystemObject for the current Oracle Beehive instance. You do not directly modify the value of this property. You configure the HTTP Server by modifying the properties of the referenced HttpServer object.

KeystoreFile

File

n/a

All permitted values

Yes

No

Path of the keystore file associated with the current Oracle Beehive instance.

KeystoreFilePassword

SecureString

n/a

All permitted values

Yes

No

Password for the keystore file associated with the current Oracle Beehive Instance.

LogBaseDir

File

beehive/logs

All permitted values

Yes

No

The base directory where Oracle Beehive will store its log files.

Oc4jInstances

Set<ManagedOc4j> (Structural property)

n/a

All permitted values

Yes

No

The set of references to the SystemObjects that configure the OC4J instances deployed in the current Oracle Beehive instance. The system automatically manages the value of this property. You must never directly modify the value.

Opmn

Opmn

n/a

All permitted values

No

No

This is a reference to the SystemObject that configures OPMN for the current Oracle Beehive instance. The system automatically manages the value of this property. You must never directly modify the value.

OracleHome

String

n/a

All permitted values

No

Yes

The Oracle home for the current Oracle Beehive instance.

Server

Server

n/a

All permitted values

No

No

This is a reference to the SystemObject that represents the Server associated with the current Oracle Beehive instance. The system automatically manages the value of this property.

WalletDir

String

n/a

All permitted values

Yes

No

Directory path of the Oracle Wallet associated with the current Oracle Beehive instance.

WalletPassword

SecureString

n/a

All permitted values

Yes

No

The password for the Oracle Wallet associated with the current Oracle Beehive instance.


UnmanagedOc4j

The following properties are available for UnmanagedOc4j:

Table 4-146 UnmanagedOc4j Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AdminPassword

SecureString

n/a

All permitted values

Yes

No

the password of the oc4j admin user

AdminUsername

String

oc4jadmin

All permitted values

Yes

No

the name of the oc4j admin user

Applications

Set<BeehiveJ2eeApplication> (Structural property)

n/a

All permitted values

Yes

No

The list of BeehiveJ2eeApplications associated with the Oc4j instance.

Database

Database

n/a

All permitted values

Yes

No

This database holds the configuration data and holds business data for any Enterprise that does not have its own dedicated storage.

HostName

String

n/a

All permitted values

No

No

The host name of the server the UnmanagedOc4j belongs to.

Oc4jName

String

n/a

All permitted values

No

No

the name of the oc4j

OpmnRequestPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The opmn request port used to contact the UnmanagedOc4j. If null, the RMI port must be set.

PseudoTranslationEnabled

boolean

false

All permitted values

Yes

No

A Boolean flag that is used to enable/disable the pseudo-translation in Beehive Resource Bundle.

PseudoTranslationStrategy

String

n/a

All permitted values

Yes

No

The class name of pseudo translation algorithm that will be used for translation process by Beehive Resource Bundle.

ResourceAdapterInstances

Set<ResourceAdapterInstance> (Structural property)

n/a

All permitted values

Yes

No

The list of ResourceAdapterInstances associated with the Oc4j instance.

RmiClientTimeout

int

1200

Min=1, Max=2147483647

Yes

No

RMI client timeout value (in seconds) for this Oc4j.

RmiLookupTimeout

int

5000

Min=1, Max=10000

Yes

No

RMI lookup timeout value (in milliseconds) for this Oc4j.

RmiPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The RMI port used to contact the UnmanagedOc4j

WalletDir

String

n/a

All permitted values

Yes

No

The wallet directory of this UnmanagedOc4j.

WalletPassword

SecureString

n/a

All permitted values

Yes

No

The wallet password of this UnmanagedOc4j.


UnsupportedSystemObject

No other properties exist for UnsupportedSystemObject .

Urm

The following properties are available for Urm:

Table 4-147 Urm Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AgentName

String

BeeAdapter

All permitted values

No

Yes

Records Management Service registers itself as an external agent with URM. This property represents the external agent name that is used by RM Service during registration with URM.

DispositionLoaderInterval

long

1

Min=1, Max=10000

Yes

No

Records Management Service Agent periodically loads disposition instructions from URM. This number specifies in hours the time interval between two successive loads of disposition instructions from URM. Default is one hour.

DispositionProcessorInterval

long

1

Min=1, Max=10000

Yes

No

Records Management Service Agent periodically processes disposition instructions from URM in batches. This indicates the time interval in hours between two successive runs to process and acknowledge the dispositions received from URM. Default is one hour.

RMAdminPassword

SecureString

n/a

All permitted values

No

Yes

The password of the Records Management Administrator in URM. This is used by Records Management Adapter to connect and file records in the URM Deployment.

RMAdminUser

String

rmadmin

All permitted values

No

Yes

The user name of the Records Management Administrator in URM. The Records Management Adapter connects to URM as this user to file records in the URM deployment.

RmAdminEmailId

String

n/a

All permitted values

No

Yes

The Beehive user account used to store outgoing emails to be filed as records.

URMAdapterURL

String

n/a

All permitted values

No

Yes

Records Management Service interacts with URM through Web Services. This URL indicates the service end point URL of the URM deployment for accessing URM Web Services. Typically, the URL is of the form http://host:port/{yoursitename}/{yoursitename}plg.


UserDirectoryService

The following properties are available for UserDirectoryService:

Table 4-148 UserDirectoryService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ConfigurationParameters

UserDirectoryService.ConfigurationParameters

n/a

All permitted values

Yes

No

Configuration parameter for UDS service.

CustomAttributes

List<CustomAttribute> (Structural property)

n/a

All permitted values

Yes

No

Framework to register the custom properties with UDS service.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DirectoryProfiles

List<DirectoryProfile> (Structural property)

n/a

All permitted values

Yes

No

User Directory Service can have many directory profiles. Each of them will point to an external directory server

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


UserDirectoryService.AttributeMap

The following properties are available for UserDirectoryService.AttributeMap:

Table 4-149 UserDirectoryService.AttributeMap Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Fields

List<FieldMap> (Structural property)

n/a

All permitted values

Yes

No

Field map list contains the attribute map between source and target directories.


UserDirectoryService.ConfigurationParameters

The following properties are available for UserDirectoryService.ConfigurationParameters:

Table 4-150 UserDirectoryService.ConfigurationParameters Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DbRetryCount

int

6

All permitted values

Yes

No

Database retry count.

DbRetryIntervalMilliSeconds

int

30000

All permitted values

Yes

No

Database retry in milli seconds.

GalEntryAccessChecked

boolean

true

All permitted values

Yes

No

Whether global address list entries are access checked when loading the global address list. It may be useful to set this to false if the global address list is fully public.

MaxEntityAddressCount

int

3

All permitted values

Yes

No

Count should not exceed super max count.

SuperMaxEntityAddressCount

int

5

All permitted values

No

No

Super max count is the upper limit. And this is applicable to contacts only


UserDirectoryService.ConfigurationParameters.Attribute

No other properties exist for UserDirectoryService.ConfigurationParameters.Attribute .

UserDirectoryService.CustomAttribute

The following properties are available for UserDirectoryService.CustomAttribute:

Table 4-151 UserDirectoryService.CustomAttribute Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Description

String

n/a

All permitted values

Yes

No

Text describing the property. This is an optional field

Name

String

n/a

All permitted values

Yes

No

Custom property name being registered.

Type

UserDirectoryService.CustomAttribute.CustomPropertyType (Legal values: STRING, BOOLEAN, DOUBLE, DATETIME, COLLABID)

STRING

All permitted values

Yes

No

Property types supported are STRING, BOOLEAN, DOUBLE, DATETIME and IDENTIFIER.


UserDirectoryService.DirectoryAttributeMap

The following properties are available for UserDirectoryService.DirectoryAttributeMap:

Table 4-152 UserDirectoryService.DirectoryAttributeMap Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DirectoryAttributeMap

Map<String,UserDirectoryService.AttributeMap> (Structural property)

n/a

All permitted values

Yes

No

Each object type can have its own Attribute mapping. Allowed object types are ENTERPRISE_USER, EXTENDED_ENTERPRISE_USER, EXTERNAL_PERSON and STATIC_GROUP


UserDirectoryService.DirectoryCache

The following properties are available for UserDirectoryService.DirectoryCache:

Table 4-153 UserDirectoryService.DirectoryCache Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Enabled

boolean

false

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.UserDirectoryServiceResourceBundle, key UDS_DIR_CACHE_ENABLED_LONG_DESC

MaxCachedEntities

int

0

All permitted values

Yes

No

Maximum number of cached entites; a value of zero will disable snapshot caching. This parameter influences the variable size of the cache.

RefreshIntervalMinutes

int

0

All permitted values

Yes

No

description not found Can't find resource for bundle oracle.ocs.management.model.UserDirectoryServiceResourceBundle, key UDS_DIR_CACHE_RIM_PROJ_LONG_DESC


UserDirectoryService.DirectoryProfile

The following properties are available for UserDirectoryService.DirectoryProfile:

Table 4-154 UserDirectoryService.DirectoryProfile Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DefaultFlag

UserDirectoryService.DirectoryProfile.ProfileType (Legal values: DEFAULT, NON_DEFAULT)

n/a

All permitted values

Yes

No

Profiles can have flags like DEFAULT or NON_DEFAULT. If a profile is set as default, then the ldap server object is set on the Site. If it is NON_DEFAULT then, the ldapserver is available with the directory profile

DirectoryAttributeMap

UserDirectoryService.DirectoryAttributeMap

n/a

All permitted values

Yes

No

Attribute map of a directory profile will map source attributes to that of target. A profile can contain mappings for different types of objects like ENTERPRISE_USER, EXTENDED_ENTERPRISE_USER, EXTERNAL_PERSON and STATIC_GROUP

GroupTypeMap

List<GroupTypeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

Group type map of a directory profile will help in synchronizing a group from external directory to target directory. The mapping could be based on the attribute or a DN of the group

ProfileState

UserDirectoryService.DirectoryProfile.ProfileState (Legal values: ENABLE, DISABLE)

DISABLE

All permitted values

Yes

No

Profiles can have state like ENABLE or DISABLE. If the profile is in enabled state, then synchronization will happen from external directory. If it is in disabled state, then synchronization will be turned off. By default the directory profile is disabled

ScopeMap

List<ScopeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

Scope type map of a directory profile will help in synchronizing a user or group from external directory to target directory. The mapping could be based on the attribute or a DN of the user or group

UserTypeMap

List<UserTypeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

User type map of a directory profile will help in synchronizing a user from external directory to target directory. The mapping could be based on the attribute or a DN of the user


UserDirectoryService.FieldMap

The following properties are available for UserDirectoryService.FieldMap:

Table 4-155 UserDirectoryService.FieldMap Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BeehiveFieldName

String

n/a

All permitted values

Yes

No

Field name can be mapped to an ATTRIBUTE or an ADDRESS or a PROPERTY. Givenname and familyname are some of the examples

BeehiveFieldSubType

String

n/a

All permitted values

Yes

No

Field sub type is mapped to the address schemes. MAILTO and TEL are some of the examples

BeehiveFieldType

UserDirectoryService.FieldMap.BeehiveFieldType (Legal values: ATTRIBUTE, PROPERTY, ADDRESS, PRINCIPAL)

n/a

All permitted values

Yes

No

Target directory fields can be of type ATTRIBUTE or an ADDRESS or a PROPERTY.

SourceAttribute

String

n/a

All permitted values

Yes

No

Source attribute will have the name of the attribute, which will be mapped to the target attribute. Givenname and sn are some of the examples of the source attribute

SourceSpecialHandling

UserDirectoryService.FieldMap.SourceSpecialHandlingType (Legal values: PROXY)

n/a

All permitted values

Yes

No

Source special handling is relevant to Activate Directory. Valid value is PROXY

SourceToTargetFieldValueMapping

List<SourceTargetValueMapping> (Structural property)

n/a

All permitted values

Yes

No

Contains the value mapping between source and target.Used mainly for external inbox feature


UserDirectoryService.FieldMap.SourceTargetValueMapping

The following properties are available for UserDirectoryService.FieldMap.SourceTargetValueMapping:

Table 4-156 UserDirectoryService.FieldMap.SourceTargetValueMapping Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SourceFieldValue

String

n/a

All permitted values

Yes

No

Attribute value at the external directory.

TargetFieldValue

String

n/a

All permitted values

Yes

No

Attribute value in the target directory.


UserDirectoryService.GroupTypeMapEntry

The following properties are available for UserDirectoryService.GroupTypeMapEntry:

Table 4-157 UserDirectoryService.GroupTypeMapEntry Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

GroupType

UserDirectoryService.DirectoryProfile.GroupType (Legal values: STATIC_GROUP)

n/a

All permitted values

Yes

No

Allowed value is STATIC_GROUP.

SourceFieldName

String

n/a

All permitted values

Yes

No

Name of the external directory attribute. Givenname and sn are some of the examples

SourceFieldType

UserDirectoryService.DirectoryProfile.FieldType (Legal values: DN, ATTRIBUTE)

n/a

All permitted values

Yes

No

Source field type can be an ATTRIBUTE or a DN.

SourceFieldValue

String

n/a

All permitted values

Yes

No

Value associated with external directory attribute.


UserDirectoryService.LdapDirectoryProfile

The following properties are available for UserDirectoryService.LdapDirectoryProfile:

Table 4-158 UserDirectoryService.LdapDirectoryProfile Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

DefaultFlag

UserDirectoryService.DirectoryProfile.ProfileType (Legal values: DEFAULT, NON_DEFAULT)

n/a

All permitted values

Yes

No

Profiles can have flags like DEFAULT or NON_DEFAULT. If a profile is set as default, then the ldap server object is set on the Site. If it is NON_DEFAULT then, the ldapserver is available with the directory profile

DirectoryAttributeMap

UserDirectoryService.DirectoryAttributeMap

n/a

All permitted values

Yes

No

Attribute map of a directory profile will map source attributes to that of target. A profile can contain mappings for different types of objects like ENTERPRISE_USER, EXTENDED_ENTERPRISE_USER, EXTERNAL_PERSON and STATIC_GROUP

GroupTypeMap

List<GroupTypeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

Group type map of a directory profile will help in synchronizing a group from external directory to target directory. The mapping could be based on the attribute or a DN of the group

LdapServer

LdapServer

n/a

All permitted values

Yes

No

Ldap server has the details of the external directory, using which the User Directory Service would connect and get the user and group data.

PollInterval

int

30

This property has a customized constraint.

Yes

No

Time interval at which the external directory will be polled by the synchronization engine. The poll interval is in seconds

ProfileState

UserDirectoryService.DirectoryProfile.ProfileState (Legal values: ENABLE, DISABLE)

DISABLE

All permitted values

Yes

No

Profiles can have state like ENABLE or DISABLE. If the profile is in enabled state, then synchronization will happen from external directory. If it is in disabled state, then synchronization will be turned off. By default the directory profile is disabled

ScopeMap

List<ScopeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

Scope type map of a directory profile will help in synchronizing a user or group from external directory to target directory. The mapping could be based on the attribute or a DN of the user or group

UserTypeMap

List<UserTypeMapEntry> (Structural property)

n/a

All permitted values

Yes

No

User type map of a directory profile will help in synchronizing a user from external directory to target directory. The mapping could be based on the attribute or a DN of the user


UserDirectoryService.MembershipMapEntry

The following properties are available for UserDirectoryService.MembershipMapEntry:

Table 4-159 UserDirectoryService.MembershipMapEntry Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

MembershipCollabId

CollabId

n/a

All permitted values

Yes

No

Identifier of the organization into which the users or groups will be synchronized.

Name

String

n/a

All permitted values

Yes

No

Organization name can be specified and this field is optional.

SourceFieldName

String

n/a

All permitted values

Yes

No

Name of the external directory attribute. Givenname and sn are some of the examples

SourceFieldType

UserDirectoryService.DirectoryProfile.FieldType (Legal values: DN, ATTRIBUTE)

n/a

All permitted values

Yes

No

Source field type can be an ATTRIBUTE or a DN.

SourceFieldValue

String

n/a

All permitted values

Yes

No

Value associated with external directory attribute.


UserDirectoryService.ScopeMapEntry

The following properties are available for UserDirectoryService.ScopeMapEntry:

Table 4-160 UserDirectoryService.ScopeMapEntry Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

MembershipMap

List<MembershipMapEntry> (Structural property)

n/a

All permitted values

Yes

No

Member type map of a directory profile will help in synchronizing a user or group from external directory to target directory. The mapping could be based on the attribute or a DN of the user or group

Name

String

n/a

All permitted values

Yes

No

Enterprise or organization name can be specified and this field is optional.

ScopeCollabId

CollabId

n/a

All permitted values

Yes

No

Enterprise or organization identifier should be specified.

SourceFieldName

String

n/a

All permitted values

Yes

No

Name of the external directory attribute. Givenname and sn are some of the examples

SourceFieldType

UserDirectoryService.DirectoryProfile.FieldType (Legal values: DN, ATTRIBUTE)

n/a

All permitted values

Yes

No

Source field type can be an ATTRIBUTE or a DN.

SourceFieldValue

String

n/a

All permitted values

Yes

No

Value associated with external directory attribute.


UserDirectoryService.UserTypeMapEntry

The following properties are available for UserDirectoryService.UserTypeMapEntry:

Table 4-161 UserDirectoryService.UserTypeMapEntry Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

SourceFieldName

String

n/a

All permitted values

Yes

No

Name of the external directory attribute. Givenname and sn are some of the examples

SourceFieldType

UserDirectoryService.DirectoryProfile.FieldType (Legal values: DN, ATTRIBUTE)

n/a

All permitted values

Yes

No

Source field type can be an ATTRIBUTE or a DN.

SourceFieldValue

String

n/a

All permitted values

Yes

No

Value associated with external directory attribute.

UserType

UserDirectoryService.DirectoryProfile.UserType (Legal values: ENTERPRISE_USER, EXTENDED_ENTERPRISE_USER, EXTERNAL_PERSON)

n/a

All permitted values

Yes

No

Can have 3 different types of users. They are ENTERPRISE_USER, EXTENDED_ENTERPRISE_USER and EXTERNAL_PERSON


VirtualServer

The following properties are available for VirtualServer:

Table 4-162 VirtualServer Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

BtiClientPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The virtual port for MX client

BtiSecureClientPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The secure virtual port for MX client

FtpPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The FTP virtual port.

HttpPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The Http virtual Port.

HttpSslEnabled

Boolean

true

All permitted values

Yes

No

If Http SSL is enabled for this VirtualServer.

HttpSslPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The secure Http virtual Port.

IPAddress

String

n/a

All permitted values

Yes

No

The VirtualServer Ip Address.

ImapPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The IMAP virtual port.

ImapSslEnabled

boolean

false

All permitted values

Yes

No

If IMAP SSL is enabled.

ImapSslPort

Integer

993

Network Port, Min=1, Max=65536

Yes

No

The secure IMAP port.

MxTunnelHostname

String

n/a

All permitted values

Yes

No

The ServerName of the VirtualServer.

MxTunnelPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The secure Http virtual Port.

ServerName

String

n/a

All permitted values

Yes

No

The ServerName of the VirtualServer.

SmtpAuthRequired

boolean

false

All permitted values

Yes

No

If SMTP authentication is required.

SmtpPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The SMTP virtual port.

SmtpSslEnabled

boolean

false

All permitted values

Yes

No

If SMTP SSL is enabled.

SmtpSslPort

Integer

465

Network Port, Min=1, Max=65536

Yes

No

The secure SMTP virtual port.

XmppPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The XMPP virtual port.

XmppSslEnabled

Boolean

false

All permitted values

Yes

No

If XMPP SSL is enabled.

XmppSslPort

Integer

n/a

Network Port, Min=1, Max=65536

Yes

No

The secure XMPP port.


VirusScanConfigurable

The following properties are available for VirusScanConfigurable:

Table 4-163 VirusScanConfigurable Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

OverrideEngineResultEnabled

Boolean

false

All permitted values

Yes

No

Indicates if Beehive should over-ride certain return scan statuses. This will allow Beehive to treat what the scan engine considers as INFECTED as CLEAN.

VirusScanPolicy

VirusScanConfigurable.VirusScanPolicy (Legal values: NO_SCAN_OR_REPAIR, SCAN_ONLY, SCAN_AND_REPAIR)

NO_SCAN_OR_REPAIR

All permitted values

Yes

No

Scan policy configured for Beehive. If the policy is set to SCAN_ONLY is set and a request to scan and repair is received, caller will receive an exception.

VirusesToIgnore

List<String>

n/a

All permitted values

Yes

No

List of viruses that Beehive can choose to ignore and treat as un-infected. This list will only be evaluated if the the OverrideEngineResultEnabled is also set to true.


VirusScanEngine

The following properties are available for VirusScanEngine:

Table 4-164 VirusScanEngine Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

VirusScanEngineCluster

VirusScanEngineCluster

n/a

All permitted values

No

No

A VirusScanEngineCluster is made up of scan engines of the same type, i.e by the same provider, configured for the Site or Enterprise. This property shows the VirusScanEngineCluster that this engine belongs to.


VirusScanEngineCluster

The following properties are available for VirusScanEngineCluster:

Table 4-165 VirusScanEngineCluster Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

CacheRefreshInterval

Long

600000

This property has a customized constraint.

Yes

No

The interval at which Beehive VirusScanner process refreshes its in-memory cache with data from the virus defnitions storage.

GatherDetailedStats

Boolean

true

All permitted values

Yes

No

Indicator to determine if detailed stats related to virusscanner needs to be captured. These stats include method stats.

OverrideEngineResultEnabled

Boolean

false

All permitted values

Yes

No

Indicates if Beehive should over-ride certain return scan statuses. This will allow Beehive to treat what the scan engine considers as INFECTED as CLEAN.

ScanEngineCommProtocol

VirusScanEngineCluster.ScanEngineCommProtocol (Legal values: ICAP, CUSTOM)

ICAP

All permitted values

Yes

Yes

The protocol used by Beehive to communicate with the third-party scan service engine.

ScanEngineCommProtocolVer

String

1.0

All permitted values

Yes

Yes

The version of the protocol used to communicate with the third-party scan service.

ScanEngines

Set<VirusScanEngine> (Structural property)

n/a

All permitted values

Yes

No

The set of virus scan engines, of the same type, that are part of this cluster.

ScanServiceProvider

VirusScanEngineCluster.ScanServiceProvider (Legal values: Symantec, TrendMicro, McAfee)

Symantec

All permitted values

Yes

Yes

Engines in a cluster are of the same type and are supplied by this third-party virus scan service provider.

VirusScanPolicy

VirusScanConfigurable.VirusScanPolicy (Legal values: NO_SCAN_OR_REPAIR, SCAN_ONLY, SCAN_AND_REPAIR)

NO_SCAN_OR_REPAIR

All permitted values

Yes

No

Scan policy configured for Beehive. If the policy is set to SCAN_ONLY is set and a request to scan and repair is received, caller will receive an exception.

VirusesToIgnore

List<String>

n/a

All permitted values

Yes

No

List of viruses that Beehive can choose to ignore and treat as un-infected. This list will only be evaluated if the the OverrideEngineResultEnabled is also set to true.


VoiceMessageService

The following properties are available for VoiceMessageService:

Table 4-166 VoiceMessageService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DebugFlags

Integer

0

All permitted values

Yes

No

long description key not set

EmailResendingEnabled

boolean

true

All permitted values

Yes

No

long description key not set

FacilityProperties

VoiceMessageService.FacilityProperties

n/a

All permitted values

Yes

No

long description key not set

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

VoiceMessageProperty

String

n/a

All permitted values

Yes

No

long description key not set


VoiceMessageService.EnterpriseProperties

The following properties are available for VoiceMessageService.EnterpriseProperties:

Table 4-167 VoiceMessageService.EnterpriseProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

EnterpriseCollabId

String

n/a

All permitted values

Yes

No

long description key not set

ExclusiveAudioContentURIs

List<String>

n/a

All permitted values

Yes

No

URI to where exclusive (application specific) audio content can be found by a VoiceXML router. This is optional.

Name

String

n/a

All permitted values

Yes

No

The name of the Enterprise. For example, "Oracle" or "General Motors".

RecordPlaybackURIs

List<String>

n/a

All permitted values

Yes

No

The URI where audio, spoken by a caller, is received by the server and stored in the database. This is optional. Reasons for setting it is if an environment is configured with a load balancer or different security settings. For example, the server may always require SSL, but streaming by not. By default the value is http://[host]:[port]/voice-servlet/vmail/crs. However, if the server is behind a load balancer with multiple midtiers, then the URI of the load balancer should be specified: http://beehive.example.com/voice-servlet/vmail/crs. NOTE: The scheme (http/https), host and port are the only things that are configurable. The remaining parts of the path are note. If NOT set at the Facility level, then the Enterprise value is used.

RecordStreamURIs

List<String>

n/a

All permitted values

Yes

No

The URI where audio, spoken by a caller, is received by the server and stored in the database. This is optional. Reasons for setting it is if an environment is configured with a load balancer or different security settings. For example, the server may always require SSL, but streaming by not. By default the value is http://[host]:[port]/voice-servlet/vmail/crs. However, if the server is behind a load balancer with multiple midtiers, then the URI of the load balancer should be specified: http://beehive.example.com/voice-servlet/vmail/crs. NOTE: The scheme (http/https), host and port are the only things that are configurable. The remaining parts of the path are note. If NOT set at the Facility level, then the Enterprise value is used.

SharedAudioContentURIs

List<String>

n/a

All permitted values

Yes

No

Shared audio refers to audio that is generic across all voice services: integers, digits, phone numbers, dates, times, etc. Setting this is optional. Reasons for setting it is if an environment is configured such that these audio resources are on a separate server from the one currently deployed. By default the value will be relative to the application: ../shared-audio. If NOT set at the Facility level, then the Enterprise value is used.

TelephoneAnsweringAddress

String

n/a

All permitted values

Yes

No

The email address that appears in the 'from' field of an email when a voice mail is received from an unknown caller. This email address must exist in Beehive. When the sender is known, then his or her email address is used. But, this email address is only when the caller is unknown and is required to exist, but not monitored to receive email responses.


VoiceMessageService.FacilityProperties

The following properties are available for VoiceMessageService.FacilityProperties:

Table 4-168 VoiceMessageService.FacilityProperties Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

ExclusiveAudioContentURIs

List<String>

n/a

All permitted values

Yes

No

URI to where exclusive (application specific) audio content can be found by a VoiceXML router. This is optional.

FacilityCollabId

String

n/a

All permitted values

Yes

No

long description key not set

Name

String

n/a

All permitted values

Yes

No

"Facility" is a well-defined technical notion for voice mail. It referes to a group of people and associated telephone equipment and other information, such as the local number to dial in to hear voice messages. Historically, Facilities have been identified with geographical locations, such as corporate headquarters, or the Chicago field office, but this is not strictly necessary. Example of Facility names are "Headquarters" and "Chicago Sears Tower Office".

RecordPlaybackURIs

List<String>

n/a

All permitted values

Yes

No

The URI where audio, spoken by a caller, is received by the server and stored in the database. This is optional. Reasons for setting it is if an environment is configured with a load balancer or different security settings. For example, the server may always require SSL, but streaming by not. By default the value is http://[host]:[port]/voice-servlet/vmail/crs. However, if the server is behind a load balancer with multiple midtiers, then the URI of the load balancer should be specified: http://beehive.example.com/voice-servlet/vmail/crs. NOTE: The scheme (http/https), host and port are the only things that are configurable. The remaining parts of the path are note.

RecordStreamURIs

List<String>

n/a

All permitted values

Yes

No

The URI where audio, spoken by a caller, is received by the server and stored in the database. This is optional. Reasons for setting it is if an environment is configured with a load balancer or different security settings. For example, the server may always require SSL, but streaming by not. By default the value is http://[host]:[port]/voice-servlet/vmail/crs. However, if the server is behind a load balancer with multiple midtiers, then the URI of the load balancer should be specified: http://beehive.example.com/voice-servlet/vmail/crs. NOTE: The scheme (http/https), host and port are the only things that are configurable. The remaining parts of the path are note.

SharedAudioContentURIs

List<String>

n/a

All permitted values

Yes

No

Shared audio refers to audio that is generic across all voice services: integers, digits, phone numbers, dates, times, etc. Setting this is optional. Reasons for setting it is if an environment is configured such that these audio resources are on a separate server from the one currently deployed. By default the value will be relative to the application: ../shared-audio


VoiceServletService

The following properties are available for VoiceServletService:

Table 4-169 VoiceServletService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


WebdavService

The following properties are available for WebdavService:

Table 4-170 WebdavService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AuthenticationScheme

String

BASIC

This property has a customized constraint.

Yes

No

Default authentication scheme for WebDAV server. Accepted values are: BASIC, DIGEST, DIGEST-BASIC.

BrowserSessionTimeout

int

30

This property has a customized constraint.

Yes

No

Length of idle time (in minutes) after which browser session will expire.

DMSInstrumentation

boolean

false

All permitted values

Yes

No

Enables or disables collection of Dynamic Monotoring System statistics.

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DavClientSessionTimeout

int

960

This property has a customized constraint.

Yes

No

Idle time (in minutes) until the Pure WebDAV client session is timed out.

DefaultWelcomeDocs

String[]

[index.html, index.htm]

All permitted values

Yes

No

The array (comma-delimited list) of welcome document names that are served up if a GET is done on a collection containing one of these documents.

DepthLimit

int

3

Min=1, Max=6

Yes

No

The depth limit to be used for PROPFIND when depth of infinity is specified by the WebDAV client.

DisplayLastModifiedBy

boolean

true

All permitted values

Yes

No

Enables or disables display of the last-modified user in generated HTML index pages.

DisplayLastModifiedOn

boolean

true

All permitted values

Yes

No

Enables or disables display of the last-modified time (date and time) in generated HTML index pages.

DisplayLockStatus

boolean

false

All permitted values

Yes

No

Enables or disables display of locked status in generated HTML index pages.

DisplayVersioningStatus

boolean

false

All permitted values

Yes

No

Enables or disables display of versioning information in generated HTML index pages.

DownloadBufferSize

int

261888

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while downloading stream data. Deployments that typically stream small files, as well as those with limited midtier memory, may improve performance by setting this value below the default. Deployments with a large amount of midtier memory may likewise improve performance by setting this value above the default.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MinimumLockTimeout

int

4

This property has a customized constraint.

Yes

No

The minimum timeout value (in minutes) that a client can request while acquiring a lock.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

UploadBufferSize

int

260096

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while uploading stream data. Deployments that typically stream small files, as well as those with limited midtier memory, may improve performance by setting this value below the default. Deployments with a large amount of midtier memory may likewise improve performance by setting this value above the default.

UserPreferenceRefreshTime

int

180

This property has a customized constraint.

Yes

No

Length of time (in minutes) before user preferences are refreshed.

WebDAVServerEnabled

boolean

true

All permitted values

Yes

No

Enables or disables the WebDAV server. When set to false, the WebDAV server will return an exception.


WikiService

The following properties are available for WikiService:

Table 4-171 WikiService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

PluginHtmlAntiSamyEnabled

boolean

true

All permitted values

Yes

No

Specifies whether or not Rich Text descriptions will be filtered by AntiSamy prior to display in the Team Collaboration Client to remove potentially malicious xhtml and javascript. Valid values: true, false

PluginHtmlAntiSamyPolicyFilePath

String

oracle/ocs/amshare/util/antisamy-strict.xml

All permitted values

Yes

No

Path to the AntiSamy policy xml file, used to configure the AntiSamy XHTML filtering of Rich Text descriptions. The path may be absolute or relative to the Beehive home directory.

PluginHtmlEnabled

boolean

false

All permitted values

Yes

No

Specifies whether or not users can insert raw html into wiki pages using the html plugin. Valid values: true, false

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

WikiTextReplace

List<String>

n/a

All permitted values

Yes

No

This service property allows administrators to specify a list of regular expressions that will be applied to rendered WikiPages for display purposes. The regular expressions should follow the standard Perl regular expression syntax, for example: s/match/replace/g. Please see Perl documentation for more information on regular expressions. The regular expressions are applied to each text node in the HTML after all XHTML related escaping is done so it is the responsibility of the administrator to write regular expressions that are safe for insert directly into HTML pages. This also means that when attempting to match characters <, >, &, ", ', the administrator should use &lt;, &gt;, &amp;,&quot;, &#39; instead, respectively. The regular expressions will be applied to the WikiPage text nodes in the order that they are provided in beectl. Please note that the administrator must re-specify all regular expressions if they want to add another one. Similarly, if the administrator wants to remove one, then all of the existing regular expressions need to be specified except for the one to be removed. For these reasons, administrators are strongly encouraged to keep a file containing the last command that was used to modify this property. If a user enters a set of regular expressions, and observes that the intended text is not being replaced in the wiki pages, the user can set the log level of BEECLIENT to INFO and search for MalformedPerl5PatternException to determine what the syntax error(s) may be in the regular expressions. To remove all regular expressions, please run modify_property with the --revert_to_default flag.


WorkspacesService

The following properties are available for WorkspacesService:

Table 4-172 WorkspacesService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

AllowContentHtmlScripts

boolean

true

All permitted values

Yes

No

Allows or disallows uploads of HTML files with client-side scripting. This is enabled by default, but administrators may wish to disable this in order to prevent malicious JavaScript code from executing on the server.

BlockedFileExtensions

String

 

This property has a customized constraint.

Yes

No

Specifies a comma-separated list of file extensions that are disallowed from being uploaded to the Beehive server, without the periods and with no spaces after the commas. This is intended to be used so administrators can block potential security vulnerabilities from entering the system. For example, a list might look like: xls,doc,swf

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DbDownloadBufferSize

int

261888

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while downloading stream data from the database layer. Deployments that typically stream small files, as well as those with limited memory, may improve performance by setting this value below the default. Deployments with larger memory may likewise improve performance by setting this value above the default.

DbUploadBufferSize

int

260096

Min=16384, Max=1048576

Yes

No

The buffer size, in bytes, used while uploading stream data to the database layer. Deployments that typically stream small files, as well as those with limited memory, may improve performance by setting this value below the default. Deployments with a larger memory may likewise improve performance by setting this value above the default.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MaxRecentActivitiesPerGroup

int

5000

This property has a customized constraint.

Yes

No

The group-max property specifies the maximum number of entries to retain for each group (defined by RecentActivityPurgeType property) during a scheduled-purge of the recent activities table. The scheduled-purge keeps, for each group (defined by RecentActivityPurgeType property), at most N entries, if the number of entries specified in this property equals N.

MembershipNotificationEnabled

boolean

true

All permitted values

Yes

No

Enables or disables e-mail notification to a user when joining or leaving a workspace.

MinRecentActivitiesPerGroup

int

5

This property has a customized constraint.

Yes

No

The group-min property specifies the minimum number of entries to retain for each group (defined by RecentActivityPurgeType property) during a scheduled-purge of the recent activities table. The scheduled-purge ensures that the most recent activities of each group are kept for up to the number of entries specified in this property, preventing them from being purged even if they are older than RecentActivityDaysToLive.

QuotaNotificationEnabled

boolean

true

All permitted values

Yes

No

Enables or disables e-mail notification to workspace coordinators when workspace quota is reached.

QuotaOverflowPercentage

int

5

This property has a customized constraint.

Yes

No

Percentage of quota, expressed as an integer, that may be exceeded the first time prior to automatic rejection of further data additions to a workspace. For example, if 1 GB of quota is allocated to the workspace, and the quota overflow percentage is 5, and hard quota has not been reached, then data additions will succeed if workspace size will be below 1.05 GB after this. Once hard quota is reached, data addition will be rejected even if workspace size is below 1.05 GB.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

RecentActivityDaysToLive

int

90

This property has a customized constraint.

Yes

No

The Days-To-Live property specifies the maximum days a recent activity entry will be kept during a scheduled purge of the recent activities table. The recent activities table is expected to be huge, and therefore a scheduled job is used regularly to automatically clean up old entries that are deemed less relevant. The purge ensures that each group (indicated by RecentActivityPurgeType property) will have a minimum number of rows (see MinRecentActivitiesPerGroup property), and then keep only recent activities within Days-To-Live days as long as the total number of rows per group does not exceed the maximum (see MaxRecentActivitiesPerGroup property).

RecentActivityInPersonalWorkspaceEnabled

boolean

false

All permitted values

Yes

No

When this property is set to true, recent activities in personal workspaces are tracked. Out of box, the value is false

RecentActivityPurgeType

int

1

Min=0, Max=2147483647

Yes

No

The purge-type property specifies how the scheduled-purge for recent activities table is performed. Currently it can be set to 0 (no purging), 1 (purge-by-workspace) or 2 (purge-by-user). Purge-by-workspace indicates the ranking of recent activity is done per workspace, which means it will keep at least MinRecentActivitiesPerGroup (and at most MaxRecentActivitiesPerGroup) the most recent entries captured in each workspace. Purge-by-user indicates the ranking of recent activity is done per user.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


XmppService

The following properties are available for XmppService:

Table 4-173 XmppService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

DomainNames

List<String>

[example.com]

This property has a customized constraint.

Yes

No

All domains for which xmpp allows login. For example oracle.com, sales.idc.com, org.company.com

Language

String

en

This property has a customized constraint.

Yes

No

Language used by server.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

MessagesOnInvalidAction

List<String>

[]

This property has a customized constraint.

Yes

No

purpose of this property is to send relevant messages to users when they perform operation which are either not allowed of carried out with wrong inputs.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

SearchFields

List<SearchField>

[first, last, email]

All permitted values

Yes

No

Fields on which a user can search User Directory.

SupportedAgents

List<AgentType>

[uds]

All permitted values

Yes

No

List of all agents supported by xmpp server

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set

VersionRules

List<String>

[]

This property has a customized constraint.

Yes

No

specify the rules for different xmpp messenger clients, sending message to user and whether disconnect the user or let him/her continue on using a particular client

XmppPort

int

5222

Network Port, Min=1, Max=65536

Yes

No

Xmpp Server accepts connection on this port

XmppSslPort

int

5223

Network Port, Min=1, Max=65536

Yes

No

Port for SSL communication

XmppTimerKeepAliveTime

int

5

Min=0, Max=10

Yes

No

keep-alive time, in minutes, used for detecting the stale connections. Negative or zero value disables the stale connection detection timer


ZimbraConnectorService

The following properties are available for ZimbraConnectorService:

Table 4-174 ZimbraConnectorService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set


ZimbraUIService

The following properties are available for ZimbraUIService:

Table 4-175 ZimbraUIService Properties

Name Data Type Default Values Accepted Values Mutable Read Only Description

Database

Database

n/a

All permitted values

Yes

No

Service specific database storage information.

DatabaseRetryIntervalList

List<Integer>

n/a

This property has a customized constraint.

Yes

No

The database retry interval list is a list of non-negative integer values used to configure the desired retry behavior when database operations fail. Beehive components that interact with the database will retry failed operations as many times as the number of values in the list. The values of the integers in the list configure the length of the interval guaranteed to elapse before each successive retry is attempted. The units are in milliseconds. If the list is empty, failed operations will not be retried. There is no limit on the number of values in the list, so there is no limit on how many retry attempts may be configured. A value of 0 causes immediate retry.

LogLevel

Level (Legal values: SEVERE, WARNING, INFO, CONFIG, FINE, FINER, FINEST)

OFF

All permitted values

Yes

No

The standard logging level that can be used to control logging output. The levels are ordered. Enabling logging at a given level also enables logging at all higher levels. The levels in descending order are: SEVERE (highest value), WARNING, INFO, CONFIG, FINE, FINER, FINEST (lowest value). In addition there is a level OFF that can be used to turn off logging, and a level ALL that can be used to enable logging of all messages.

ReadOnlyDBAccessEnabled

Boolean

true

All permitted values

Yes

No

Priority for enabling read-only access for the serice.

UdsCacheDisabled

boolean

false

All permitted values

Yes

No

long description key not set