<?xml version="1.0" encoding="UTF-8"?><!--
    This is a sample configuration file for AR System Java plug-in
    server. Before your start the plug-in server, update this file
    with your values for the configuration parameters.
            

#######################################################################
#                                                                     #
#   IMPORTANT: If you add or modify any entries in this file, you     #
#   must restart the plug-in server to make the change take effect.   #
#                                                                     #
#   After the server is restarted, all plug-ins must be loaded and    #
#   instantiated before the server can receive RPC requests. (If      #
#   the plug-in server log level is set to Warn or higher, a          #
#   message is added to the AtriumPluginSvr.log file when the server  #
#   is ready.)                                                        #
#                                                                     #
#   EXCEPTION: If you specify a reload delay before starting the      #
#   plug-in server, any plug-ins that you add to this file after      #
#   starting the plug-in server are automatically loaded and          #
#   initiated for all core worker threads. You do not have to         #
#   restart the plug-in server. See the reloadDelay tag.              #
#                                                                     #
#######################################################################

    Server configuration parameters: 
    
    port: The number of the TCP port that the plug-in server binds to.
    You enter this port when you install the AR Server. If this is the
    only plug-in server you are running, you can enter this value in
    the Plug-in Server list on the Connection Settings tab of the
    AR System Administration: Server Information form. If this plug-in
    server is running with the C plug-in server, use this port to
    configure the Server-Plug-in-Alias in the ar.cfg  or ar.conf file.
    The AR System installer does this for you by default.
        Valid values:   Unused port from 1024 to 64000
        Default value:  9999

    encryptionPolicy: Policy code that determines whether the plug-in
    server allows or requires encrypted communication with the AR System
    server.
        Valid values:   0 - Allowed but not required.
                        1 - Required.
                        2 - Not allowed.
        Default value:  2

    publicKeyAlg: Policy code that selects the publickey-privatekey
    encryption algorithm that the plug-in server uses to communicate
    with its clients. Ignored if encryptionPolicy is 2.
        Valid values:   4 - RSA low encryption, modulus 512 bits.
                        5 - RSA medium encryption, modulus 1024 bits
                            (requires BMC Remedy Encryption Performance
                            Security).
                        6 - RSA high encryption, modulus 2048 bits
                            (requires BMC Remedy Encryption Premium
                            Security).
        Default value:  4

    publicKeyExpiry: Expiration time for public keys as a number of
    seconds. Ignored if encryptionPolicy is 2.
        Valid values:   Any positive integer
        Default value:  86400 (in seconds, default value = 24 hours)

    dataEncryptionAlg: Policy code that selects the network data
    encryption algorithm that the plug-in server uses to communicate
    with its clients. Ignored if encryptionPolicy is 2.
        Valid values:   1 - RSA low encryption, modulus 512 bits.
                        2 - RSA medium encryption, modulus 1024 bits
                            (requires BMC Remedy Encryption Performance
                            Security).
                        3 - RSA high encryption, modulus 2048 bits
                            (requires BMC Remedy Encryption Premium
                            Security).
        Default value:  1

    dataKeyExpiry: Expiration time for the network data encryption
    keys in seconds. Ignored if encryptionPolicy is 2.
        Valid values:   Any positive integer
        Default value:  2700 (in seconds; default value = 45 minutes)

    pluginPassword: Encrypted password that the AR System server uses to
    connect to the plug-in server. Password security is optional. If
    the AR System server has Server-Plugin-Target-Password configured in
    its ar.cfg or ar.conf file, the plug-in server can get the 
    encrypted password one of two ways. If the plug-in server command-line
    -i option value refers to a server installation folder, the plug-in
    server reads the encrypted password from the ar.cfg or ar.conf file. 
    If it does not, the plug-in server uses this value.
        Valid values:   Any valid encrypted password string
        Default value:  (None)

    regPortMapper: Register with the portmapper. As installed, the C plug-in
    server registers with the portmapper. By default, the Java plug-in
    server is not registered with the portmapper. If the portmapper is
    running on this system and you choose to register with the portmapper,
    set this to true.
        Valid values:   true, false
        Default value:  false

    numCoreThreads: Number of core worker threads that the Java plug-in 
    server initializes to handle RPC requests.
        Valid values:   Any positive integer
        Default value:  5 
  
    numSelectorThreads: Number of selector threads that the Java plug-in 
    server uses to dispatch RPC requests to the core worker thread task 
    queue.
        Valid values:   Any positive integer
        Default value:  2 

    workQueueTaskThreshold: Threshold for the core worker thread task queue. 
    When the tasks in the queue exceed this number, a message is logged in 
    the arjavaplugin.log file. (If workQueueMonitorLogInterval is set to 0, 
    this threshold is ignored.) 
        Valid values:   Any positive integer
        Default value:  5 
        
    workQueueMonitorLogInterval: Interval at which the core worker thread 
    task queue monitor checks whether the tasks in the queue exceed the 
    threshold set in workQueueTaskThreshold. When this entry is set to 0, 
    messages are not logged in the arjavaplugin.log file when the threshold 
    is exceeded.    
        Valid values:   Any positive integer (in milliseconds)
        Default value:  0
        
    maskingImplementation: Optional tag for plug-in developers who
    implement the com.bmc.arsys.pluginsvr.ISignalMasking interface to 
    enable a plug-in server to use custom signals. For internal use 
    only. Following is a sample implementation:
         <maskingImplementation>com.bmc.arsys.plugins.signal.
            SignalMaskForSpecificPlugins</maskingImplementation>


Plug-in configuration parameters:

    Put the configuration for the plug-ins in the <plugins> element.

    The Java plug-in server creates one thread for each AR System server
    connection. Each thread runs an instance of each plug-in configured
    in this file and handles all plug-in calls from the AR System
    server thread. The plug-in server creates and destroys threads as needed.

    Instances of a plug-in running in different threads use the same
    class loader. That means that plug-ins serving different AR System
    servers can share static data, but the plug-in implementation is
    responsible for thread safety.

    Use the <pluginset> element to load multiple plug-ins that
    share a common parent class loader. Put the configuration for such
    plug-ins in this element. To specify any shared classpath entries
    here, use pathelement entries. This enables you to share resources
    among plug-ins. (You can also nest one <pluginset> within another,
    but all the plug-ins configured in the outmost <pluginset> share
    the same parent class loader.)

    The optional name attribute names the plug-in set. If no name is
    given, the plug-in server supplies one. 

    Put the configuration parameters for each plug-in in a separate 
    <plugin> element. The plug-in configuration parameters are:

    name: A unique name for each Java plug-in. Use different names with
    the same JAR file and class name to configure different plug-in
    instances. 
        Valid values:   A string of letters, digits, period, hyphen,
                        and underscores

    type: The plug-in interface implemented.
        Valid values:   ARDBC, AREA, FilterAPI

    code: The implementation language of the plug-in.
        Valid values:   JAVA

    filename: The name of the file that the plug-in server loads to
    access the plug-in implementation. The file must be in the plug-in
    server class path.
        Valid values:   For Java: The absolute file name of the JAR file
                        containing the class that implements the plug-in
                        and all dependent jar files. The Class-Path
                        attribute in the manifest file in the JAR must
                        list the included dependant JAR files
                        separated by spaces.

    classname: For Java plug-ins, the name of the Java class in the JAR
    file that implements the plug-in.
        Valid values:   Any valid class name from the JAR file

    pathelement: The location of a dependent JAR file or the path to
    a dependent native library. Each plug-in element can contain zero or
    more pathelement elements.
        Valid values:   For <pathelement type="location">: The absolute
                        file name of a dependant JAR file for the plug-in
                        server to load.
                        For <pathelement type="path">: The absolute path
                        name of a directory for the plug-in server to
                        search when the plug-in loads a native library.
                        Any native libraries required by libraries
                        loaded by a plug-in must be accessible through
                        the system library search path.

    version: Plug-in interface version. For future use; not required for
    this release.
        Valid values:   4 - For ARDBC.
                        3 - For AREA.
                        2 - For FilterAPI.
        Default value:  (Set automatically)

    userDefined: An optional element that contains user-defined
    configuration elements for this plug-in. A plug-in can get and
    set these values by using methods of the ARPluginContext class.

    entryIdPipeMode: Flag specifying whether entry IDs returned by
    the getEntry() method are separated by pipes. To add this
    configuration element to a plug-in, include it in the plug-in's
    <userDefined> element. If this element is not included in a plug-
    in, returned entry IDs are not separated by pipes.
        Valid values:   true - Entry IDs are separated by pipes.
                        false - Entry IDs are not separated by pipes.
        Default value:  false


######################################################################################	
    Sample Configuration (7.1.00 and earlier) - In later releases, plug-in
    configuration was simplified. However, later releases also support this format.
######################################################################################	
	<pluginset name="group1">
		<plugin>
			<name>SAMPLE.FILTERAPI</name>
			<type>FilterAPI</type>
			<code>JAVA</code>
			<filename>SAMPLEPLUGINFOLDER/samplefilterapi.jar</filename>
			<classname>com.bmc.arsys.plugin.sample.FilterAPISample</classname>
			<pathelement type="path">SAMPLEPLUGINFOLDER</pathelement>
			<pathelement type="location">SAMPLEPLUGINFOLDER/samplePluginDependency.jar</pathelement>
			<userDefined>
				<sample>Property Value</sample>
                                <entryIdPipeMode>true</entryIdPipeMode>
			</userDefined>
		</plugin>
		<plugin>
			<type>FilterAPI</type>
			<name>SAMPLE.FILTERAPI2</name>
			<code>JAVA</code>
			<filename>SAMPLEPLUGINFOLDER/samplefilterapi.jar</filename>
			<classname>com.bmc.arsys.plugin.sample.FilterAPISample</classname>
			<pathelement type="path">SAMPLEPLUGINFOLDER</pathelement>
			<pathelement type="location">SAMPLEPLUGINFOLDER/samplePluginDependency.jar</pathelement>
		</plugin>
	</pluginset>
	<plugin>
		<name>SAMPLE.AREA</name>
		<type>AREA</type>
		<code>JAVA</code>
		<filename>SAMPLEPLUGINFOLDER/samplearea.jar</filename>
		<classname>com.bmc.arsys.plugin.sample.AREASample</classname>
		<pathelement type="path">SAMPLEPLUGINFOLDER</pathelement>
		<pathelement type="location">SAMPLEPLUGINFOLDER/samplePluginDependency.jar</pathelement>
	</plugin>

######################################################################################	
    Changes applicable to configuration simplification and dynamic plug-in loading
######################################################################################	
    
    Sample-Config: These are sample plug-in definitions in the simplified
                   configuration format
    
    Java plug-in:
    <plugin>
		<name>SAMPLE.FILTERAPI</name>
		<classname>com.bmc.arsys.plugin.sample.FilterAPISample</classname>
		<pathelement type="location">../java_components/build/lib/samplePluginDependency.jar</pathelement>
		<pathelement type="location">../java_components/build/lib/samplefilterapi.jar</pathelement>
    </plugin>

######################################################################################    	
    
    reloadDelay: Interval between the time that you add a plug-in 
    configuration to this file and save the file and the time that the 
    system dynamically loads and initiates the plug-in. During this interval, 
    you can modify the new plug-in configuration if necessary without being 
    required to restart the plug-in server to make your changes take effect. 
    After the system dynamically loads and initiates the plug-in, any changes 
    you make to the plug-in configuration require a plug-in server restart.
        Valid values:   Any positive integer (in milliseconds)
        Default value:  30 

    For example, to specify a 5-second reload delay, use this configuration:

    <pluginsvr_config>
	<port>PLUGINPORT</port>
	....
	....
    	<reloadDelay>5000</reloadDelay> 
    	....
    	<plugins>
    	....

    NOTC: Dynamic loading applies only to new plug-ins. Any other changes 
    made to this plug-in server configuration file require a server restart.

    
######################################################################################
######################################################################################	
--><pluginsvr_config>
<port>9556</port>
<regPortMapper>false</regPortMapper>
<loadNativePluginHost>false</loadNativePluginHost>
<encryptionPolicy>2</encryptionPolicy>
<publicKeyAlg>4</publicKeyAlg>
<publicKeyExpiry>10000</publicKeyExpiry>
<dataEncryptionAlg>1</dataEncryptionAlg>
<dataKeyExpiry>10000</dataKeyExpiry>
<numCoreThreads>5</numCoreThreads>
<numSelectorThreads>2</numSelectorThreads>
<workQueueMonitorLogInterval>0</workQueueMonitorLogInterval>
<workQueueTaskThreshold>5</workQueueTaskThreshold>
<pluginSvrName>PluginServer_VW-AUS-CUS-SP2C_9556_IDGAA5V0GEROBAP4GBJ7P3JE95CHN2</pluginSvrName>
<reloadDelay>30000</reloadDelay>
<enableNativeBridge>false</enableNativeBridge>
<maxThreads>10</maxThreads>
<excessCoreThreadsIdleKeepAliveTimeInSecond>0</excessCoreThreadsIdleKeepAliveTimeInSecond>
<supportNativePluginHost>false</supportNativePluginHost>
<pluginSvrLogEnable>True</pluginSvrLogEnable>
<pluginSvrLogFile>C:/Program Files/BMC Software/AtriumCore/Logs/AtriumPluginSvr.log</pluginSvrLogFile>
<pluginSvrLogLevel>WARN</pluginSvrLogLevel>
<pluginSvrLogMaxFileSize>1022976</pluginSvrLogMaxFileSize>
<pluginSvrLogMaxHistory>2</pluginSvrLogMaxHistory>
<pluginSvrAlwaysOnLogName>C:\\Program Files\\BMC Software\\AtriumCore\\Logs\\pluginsvr_clm-aus-ss0v9c_9556_alwayson.log</pluginSvrAlwaysOnLogName>
<pluginSvrAlwaysOnCopies>20</pluginSvrAlwaysOnCopies>
<pluginSvrAlwaysOnBufferSize>0</pluginSvrAlwaysOnBufferSize>
<plugins>
<plugin>
<name>BMC.ARDBC.ATRIUM.AIS</name>
<classname>com.bmc.atrium.ais.ardbc.AISMainARDBC</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/ais/ais.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin/</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/ais/</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/lib/ehcache-core-2.2.0.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-api-1.5.11.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-jdk14-1.5.11.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/GraphPlugin.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/servlet-api-2.4.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium-widget.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-core.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-common.jar</pathelement>
<userDefined>
<override_ar_system_password/>
<AIS_File>C:\Program Files\BMC Software\AtriumCore/Logs/ais.log</AIS_File>
<AIS_MaxBackupIndex>10</AIS_MaxBackupIndex>
<AISFilter_level>Info</AISFilter_level>
<override_ar_server_host/>
<allow_loops>false</allow_loops>
<override_ar_system_user/>
<time_for_sim_cache_removal>60</time_for_sim_cache_removal>
<AIS_level>Info</AIS_level>
<override_ar_server_port/>
<AIS_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</AIS_ConversionPattern>
<AIS_MaxFileSize>5MB</AIS_MaxFileSize>
</userDefined>
</plugin>
<plugin>
<name>BMC.ARDBC.ATRIUM.API</name>
<classname>com.bmc.atrium.ardbc.AtriumARKit</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium-ar-kit.jar</filename>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin/cmdbbol91.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/GraphPlugin.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/servlet-api-2.4.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium-widget.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/lib/ehcache-core-2.2.0.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-api-1.5.11.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-jdk14-1.5.11.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/reapi91.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\ARSystem\artools\lib/artools91_build005.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\ARSystem\ARServer\api\lib/arapiext91_build005.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-core.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-common.jar</pathelement>
<userDefined>
<AtriumARKit_MaxFileSize>5MB</AtriumARKit_MaxFileSize>
<override_ar_system_password/>
<reconcile_wait_in_secs>20</reconcile_wait_in_secs>
<override_ar_server_host/>
<override_ar_system_user/>
<golden_dataset>BMC.ASSET</golden_dataset>
<AtriumARKit_MaxBackupIndex>10</AtriumARKit_MaxBackupIndex>
<override_ar_server_port/>
<perform_reconcile>false</perform_reconcile>
<reconcile_wait_interval>1</reconcile_wait_interval>
<AtriumARKit_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</AtriumARKit_ConversionPattern>
<reconcile_jobname>BMC Sample - Identification and Merge</reconcile_jobname>
<AtriumARKit_level>Info</AtriumARKit_level>
<AtriumARKit_File>C:\Program Files\BMC Software\AtriumCore/Logs/atrium-ar-kit.log</AtriumARKit_File>
<reconcile_dataset_source>BMC.SAMPLE</reconcile_dataset_source>
<reconcile_dataset_target>BMC.ASSET</reconcile_dataset_target>
</userDefined>
</plugin>
<plugin>
<name>BMC.ARDBC.ATRIUM.SERVICECONTEXT</name>
<classname>com.bmc.atrium.federation.srvcctx.ServiceContextMain</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/federation-service_context.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/federation-common.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/lib/ehcache-core-2.2.0.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-api-1.5.11.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-jdk14-1.5.11.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/WSRegistryAPI91.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/axis2-1.5.1-merged-client-set.jar</pathelement>
<userDefined>
<ServiceContext_level>Info</ServiceContext_level>
<ServiceContext_MaxBackupIndex>10</ServiceContext_MaxBackupIndex>
<ServiceContext_File>C:\Program Files\BMC Software\AtriumCore/Logs/ServiceContext.log</ServiceContext_File>
<ServiceContext_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</ServiceContext_ConversionPattern>
<ServiceContext_MaxFileSize>5MB</ServiceContext_MaxFileSize>
</userDefined>
</plugin>
<plugin>
<name>DSM.FILTER</name>
<classname>com.bmc.atrium.dsm.plugin.SDSMPlugin</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/dsm.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/federation/lib/ehcache-core-2.2.0.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-api-1.5.11.jar</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/slf4j-jdk14-1.5.11.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/GraphPlugin.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/servlet-api-2.4.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/atrium-widget.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/reapi91.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-core.jar</pathelement>
<pathelement type="location">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/flex-messaging-common.jar</pathelement>
<userDefined>
<override_ar_system_password/>
<override_ar_server_host/>
<DSM_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</DSM_ConversionPattern>
<DSM_MaxBackupIndex>10</DSM_MaxBackupIndex>
<override_ar_system_user/>
<DSM_MaxFileSize>5MB</DSM_MaxFileSize>
<DSM_File>C:\Program Files\BMC Software\AtriumCore/Logs/dsm.log</DSM_File>
<override_ar_server_port/>
<DSM_level>Info</DSM_level>
</userDefined>
</plugin>
<plugin>
<name>BMC.FILTERAPI.NOE</name>
<classname>com.bmc.noe.plugin.NOEPluginServer</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/noe/noeplugin91.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/noe</pathelement>
<userDefined>
<override_ar_system_password/>
<override_ar_server_host/>
<NOE_File>C:\Program Files\BMC Software\AtriumCore/Logs/noe.log</NOE_File>
<NOE_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</NOE_ConversionPattern>
<override_ar_system_user/>
<NOE_MaxFileSize>5MB</NOE_MaxFileSize>
<QRD-Enabled>F</QRD-Enabled>
<NOE_level>Info</NOE_level>
<override_ar_server_port/>
<NOE_MaxBackupIndex>10</NOE_MaxBackupIndex>
</userDefined>
</plugin>
<plugin>
<name>BMC.ARDBC.DEPRECATION.PLUGIN</name>
<classname>com.bmc.cmdb.plugins.deputil.CMDBDeprecationPlugin</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/deprecation/deputilplugin91.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin</pathelement>
<userDefined>
<override_ar_system_password/>
<entryIdPipeMode>true</entryIdPipeMode>
<override_ar_server_host/>
<override_ar_system_user/>
<Deprecation_File>C:\Program Files\BMC Software\AtriumCore/Logs/depUtilPlugin.log</Deprecation_File>
<override_ar_server_port/>
<Deprecation_MaxFileSize>5MB</Deprecation_MaxFileSize>
<ar_rpc_queue/>
<cmdb_rpc_queue/>
<definition_check_interval>900</definition_check_interval>
<Deprecation_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</Deprecation_ConversionPattern>
<Deprecation_MaxBackupIndex>10</Deprecation_MaxBackupIndex>
<Deprecation_level>Info</Deprecation_level>
</userDefined>
</plugin>
<plugin>
<name>BMC.FILTERAPI.EVENT_ENGINE</name>
<classname>com.bmc.atrium.events.plugin.EventEnginePluginServer</classname>
<filename>C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/events/eventplugin91.jar</filename>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\sdk\bin</pathelement>
<pathelement type="path">C:\Program Files\BMC Software\AtriumCore\cmdb\plugins/events</pathelement>
<userDefined>
<Events_ConversionPattern>%d %-5p [%t] %C (%F:%L) - %m%n</Events_ConversionPattern>
<override_ar_system_password/>
<override_ar_server_host/>
<Events_MaxFileSize>5MB</Events_MaxFileSize>
<Events_MaxBackupIndex>10</Events_MaxBackupIndex>
<override_ar_system_user/>
<Events_File>C:\Program Files\BMC Software\AtriumCore/Logs/events.log</Events_File>
<override_ar_server_port/>
<Events_level>Info</Events_level>
</userDefined>
</plugin>
</plugins>
</pluginsvr_config>
