File: PropertyNames.xml

package info (click to toggle)
zeroc-ice 3.7.10-3.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 75,696 kB
  • sloc: cpp: 356,894; java: 226,081; cs: 98,312; javascript: 35,027; python: 28,716; objc: 27,050; php: 7,526; ruby: 7,190; yacc: 2,949; ansic: 2,469; xml: 1,589; lex: 1,241; makefile: 472; sh: 52
file content (692 lines) | stat: -rw-r--r-- 28,515 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
<?xml version="1.0"?>
<!-- Copyright (c) ZeroC, Inc. All rights reserved. -->

<!--
This file defines the valid properties that are used by various Ice
components. It is used to generate source code using the makeprops.py
utility, so we do not need to redundantly maintain the same property
definitions in several languages (and risk having them go out of sync).

The root node has zero or more section elements. Section elements must
have a name attribute that defines a "section label". Section elements
may also have a noCmdLine attribute. If noCmdLine has the value "true",
command line options that match the section label are not parsed by
Ice::PropertiesI::parseCommandLineOptions(). If noCmdLine has a value
other than "true" or is omitted, Ice::PropertiesI::parseCommandLineOptions()
processes properties that match the respective section name.

Each root node may also have zero or more class elements. A class
element has a name attribute, a prefix-only attribute and zero or more
suffix elements. Suffix elements appear similar to the property elements
found in the property sections. How classes are used is described below.

Each section node has zero or more property elements. Property elements
must have a name attribute. Property elements may also have a property
class attribute. The property class attribute allows you to define a
list of properties that are repeatedly defined for different property
categories. Here's how it works:

 - Define a property class with the list of property suffixes common to
   that class.

 - Include the class attribute in a property declaration.

The generated code will take each property that has a class attribute
and expand it by creating new properties for each suffix in the
specified class. The new property names are constructed as follows:

generated property name =
    relevant section name +
    property name containing the class attribute +
    the suffix in the class.

Let's illustrate by comparing a case using classes vs. without
classes:

    <class name="proxy" prefix-only="false">
        <suffix name="EndpointSelection" />
        <suffix name="ConnectionCached" />
        <suffix name="PreferSecure" />
        <suffix name="LocatorCacheTimeout" />
        <suffix name="Locator" />
        <suffix name="Router" />
        <suffix name="CollocationOptimization" deprecated="true" deprecatedBy="CollocationOptimized" />
        <suffix name="CollocationOptimized" />
    </class>
    .
    .
    .
    <section name="Ice">
        <property name="Default.Locator" class="proxy" />
    </section>

This definition is equivalent to the following:

    <section name="Ice">
        <property name="Default.Locator" />
        <property name="Default.Locator.EndpointSelection" />
        <property name="Default.Locator.ConnectionCached" />
        <property name="Default.Locator.PreferSecure" />
        <property name="Default.Locator.LocatorCacheTimeout" />
        <property name="Default.Locator.Locator" />
        <property name="Default.Locator.Router" />
        <property name="Default.Locator.CollocationOptimization" deprecatedBy="Ice.Default.Locator.CollocationOptimized" />
        <property name="Default.Locator.CollocationOptimized" />
    </section>

The benefit is that several categories have the same properties because
they are the same `type' of property. Without a property class, changes
to a supported type of property require modifying the file in several
locations, e.g.:

    <section name="Ice">
        <property name="Default.Router" class="proxy" />
        <property name="Default.Locator" class="proxy" />
    </section>

Notice the `prefix-only' attribute on the property class node. If
prefix-only is set to true the property containing the property class
works as a prefix and place holder; code isn't actually generated for
the property itself. When set to false, properties are expanded as
described above `in addition to' the property containing the property
class.

Property elements may also include the deprecated and deprecatedBy
attributes. A property that has a deprecated attribute with the value
"true" will be marked internally as deprecated and Ice may issue warnings
if a deprecated property is used. The deprecatedBy attribute allows the
Ice run time to transparently replace the deprecated property name with a
new property name that supersedes the deprecated property.

The "deprecatedBy" attribute is currently treated differently when used
in a property class. In the regular property list, deprecatedBy is treated
as an absolute property name and does not prepend the section name or
substring of the property being deprecated. This is not useful for property
classes. When using deprecatedBy in property classes, the deprecatedBy value
is appended to a string constructed from the current section name and the
name attribute in the property list containing the class attributed. For
example:

<class name="proxy">
    ...
    <suffix name="CollocationOptimization" deprecatedBy="CollocationOptimized" />
    <suffix name="CollocationOptimized" />
</class>

<properties>
    <section name="Ice">
        <property name="Default.Locator" class="proxy" />
        ...
    </section>
</properties>

This definition is equivalent to the following:

<properties>
    <section name="Ice">
        <property name="DefaultLocator.CollocationOptimization" deprecatedBy="Ice.DefaultLocator.CollocationOptimized" />
        <property name="DefaultLocator.CollocationOptimized" />
        ...
    </section>
</properties>

Property element name attributes have some additional syntax: The token
"<any>" (denoted in valid XML as [any]) is a wildcard and matches any
non-empty sequence of non-whitespace characters.

Examples:

"Ice.Foo.<any>" allows all properties with that prefix, such as "Ice.Foo.Bar".
"Ice.Foo<any>" allows properties such as "Ice.Foo.Bar" and "Ice.FooBar".

Property definitions are translated into each language by makeprops.py.
For example, consider the following definitions:

    <properties>
        <section name="Ice">
            <property name="ChangeUser" />
            <property name="Package.[any]" />
            <property name="QuenchRequests" deprecated="true" />
            <property name="Foo" deprecated="true" deprecatedBy="Bar" />
            <property name="Bar" />
            <property name="Default.Locator" proxy="true" />
            <property name="ThreadPool.Client" threadpool="true" />
        </section>
        <section name="IceBox">
            <property name="LoadOrder" />
        </section>
    </properties>

If the source file is called Properties.xml, makeprops.py generates
code similar to the following for the C++ header and source file:

//
// Properties.h
//
namespace IceInternal
{

//
// ... definitions for IceInternal::Property and IceInternal::PropertyArray
// omitted...

class Properties
{
public:

    static const PropertyArray const IceProps;
    static const PropertyArray const IceBoxProps;

    static const PropertyArray validProps[];
};

}

// Properties.cpp
const IceInternal::Property IceInternal::Properties::IcePropsData[] =
{
    IceInternal::Property("Ice.ChangeUser", false, 0),
    IceInternal::Property("Ice.Package.*", false, 0),
    IceInternal::Property("Ice.QuenchRequests", true, 0),
    IceInternal::Property("Ice.Foo", true, "Ice.Bar"),
    IceInternal::Property("Ice.Bar", false, 0),
    IceInternal::Property("Ice.Default.Locator", false, 0),
    IceInternal::Property("Ice.Default.Locator.EndpointSelection", false, 0),
    IceInternal::Property("Ice.Default.Locator.ConnectionCached", false, 0),
    IceInternal::Property("Ice.Default.Locator.PreferSecure", false, 0),
    IceInternal::Property("Ice.Default.Locator.LocatorCacheTimeout", false, 0),
    IceInternal::Property("Ice.Default.Locator.Locator", false, 0),
    IceInternal::Property("Ice.Default.Locator.Router", false, 0),
    IceInternal::Property("Ice.Default.Locator.CollocationOptimization", false, 0),
    IceInternal::Property("Ice.ThreadPool.Client.Size", false, 0),
    IceInternal::Property("Ice.ThreadPool.Client.SizeMax", false, 0),
    IceInternal::Property("Ice.ThreadPool.Client.SizeWarn", false, 0),
    IceInternal::Property("Ice.ThreadPool.Client.StackSize", false, 0)
};

const IceInternal::PropertyArray
    IceInternal::Properties::IceProps(IcePropsData, sizeof(IcePropsData) /
        sizeof(IcePropsData[0]));

const IceInternal::Property IceInternal::Properties::IceBoxPropsData[] =
{
    IceInternal::Property("IceBox.LoadOrder", false, 0)
};

const IceInternal::PropertyArray
    IceInternal::Properties::IceBoxProps(IceBoxPropsData, sizeof(IceBoxPropsData) /
        sizeof(IceBoxPropsData[0]));

const PropertyArray IceInternal::Properties::validProps[] =
{
    IceProps,
    IceBoxProps,
    IceInternal::PropertyArray(0, 0)
};

Note that the class name ("Properties" in this example) is generated
from the file name, and the first component of the property name is
generated from the section label.

-->
<properties>
    <class name="proxy" prefix-only="false">
        <suffix name="EndpointSelection" />
        <suffix name="ConnectionCached" />
        <suffix name="PreferSecure" />
        <suffix name="LocatorCacheTimeout" />
        <suffix name="InvocationTimeout" />
        <suffix name="Locator" />
        <suffix name="Router" />
        <suffix name="CollocationOptimized" />
        <suffix name="Context.[any]" />
    </class>

    <class name="acm" prefix-only="false">
        <suffix name="Timeout" />
        <suffix name="Heartbeat" />
        <suffix name="Close" />
    </class>

    <class name="threadpool" prefix-only="true">
        <suffix name="Size" />
        <suffix name="SizeMax" />
        <suffix name="SizeWarn" />
        <suffix name="StackSize" />
        <suffix name="Serialize" />
        <suffix name="ThreadIdleTime" />
        <suffix name="ThreadPriority" />
    </class>

    <class name="objectadapter" prefix-only="true">
        <suffix name="ACM" class="acm"/>
        <suffix name="AdapterId" />
        <suffix name="Endpoints" />
        <suffix name="Locator" class="proxy"/>
        <suffix name="PublishedEndpoints" />
        <suffix name="ReplicaGroupId" />
        <suffix name="Router" class="proxy"/>
        <suffix name="ProxyOptions" />
        <suffix name="ThreadPool" class="threadpool" />
        <suffix name="MessageSizeMax" />
    </class>

    <class name="deprecatedthreadpool" prefix-only="true">
        <suffix name="Size" deprecated="true" />
        <suffix name="SizeMax" deprecated="true" />
        <suffix name="SizeWarn" deprecated="true" />
        <suffix name="StackSize" deprecated="true" />
    </class>

    <class name="deprecatedobjectadapter" prefix-only="true">
        <suffix name="AdapterId" deprecated="true" />
        <suffix name="Endpoints" deprecated="true" />
        <suffix name="Locator" deprecated="true" />
        <suffix name="PublishedEndpoints" deprecated="true" />
        <suffix name="ReplicaGroupId" deprecated="true" />
        <suffix name="Router" deprecated="true" />
        <suffix name="ThreadPool" class="deprecatedthreadpool"/>
    </class>

    <class name="mx" prefix-only="false">
        <suffix name="GroupBy" />
        <suffix name="Map" />
        <suffix name="RetainDetached" />
        <suffix name="Accept" />
        <suffix name="Reject" />
    </class>

    <section name="Ice">
        <property name="AcceptClassCycles" />
        <property name="ACM.Client" deprecated="true"/>
        <property name="ACM.Server" deprecated="true"/>
        <property name="ACM" class="acm"/>
        <property name="ACM.Client" class="acm"/>
        <property name="ACM.Server" class="acm"/>
        <property name="Admin" class="objectadapter" />
        <property name="Admin.DelayCreation" />
        <property name="Admin.Enabled" />
        <property name="Admin.Facets" />
        <property name="Admin.InstanceName" />
        <property name="Admin.Logger.KeepLogs" />
        <property name="Admin.Logger.KeepTraces" />
        <property name="Admin.Logger.Properties" />
        <property name="Admin.ServerId" />
        <property name="BackgroundLocatorCacheUpdates"/>
        <property name="BatchAutoFlush" deprecated="true"/>
        <property name="BatchAutoFlushSize" />
        <property name="ChangeUser" />
        <property name="ClassGraphDepthMax" />
        <property name="ClientAccessPolicyProtocol" />
        <property name="Compression.Level" />
        <property name="CollectObjects"/>
        <property name="Config" />
        <property name="ConsoleListener" />
        <property name="Default.CollocationOptimized" />
        <property name="Default.EncodingVersion" />
        <property name="Default.EndpointSelection" />
        <property name="Default.Host" />
        <property name="Default.Locator" class="proxy" />
        <property name="Default.LocatorCacheTimeout" />
        <property name="Default.InvocationTimeout" />
        <property name="Default.Package" />
        <property name="Default.PreferSecure" />
        <property name="Default.Protocol" />
        <property name="Default.Router" class="proxy" />
        <property name="Default.SlicedFormat" />
        <property name="Default.SourceAddress" />
        <property name="Default.Timeout" />
        <property name="EventLog.Source" />
        <property name="FactoryAssemblies" />
        <property name="HTTPProxyHost" />
        <property name="HTTPProxyPort" />
        <property name="ImplicitContext" />
        <property name="InitPlugins" />
        <property name="IPv4" />
        <property name="IPv6" />
        <property name="LogFile" />
        <property name="LogFile.SizeMax" />
        <property name="LogStdErr.Convert"/>
        <property name="MessageSizeMax" />
        <property name="Nohup" />
        <property name="NullHandleAbort" />
        <property name="Override.CloseTimeout" />
        <property name="Override.Compress" />
        <property name="Override.ConnectTimeout" />
        <property name="Override.Timeout" />
        <property name="Override.Secure" />
        <property name="Package.[any]" />
        <property name="Plugin.[any]" />
        <property name="PluginLoadOrder" />
        <property name="PreferIPv6Address" />
        <property name="PreloadAssemblies" />
        <property name="PrintAdapterReady" />
        <property name="PrintProcessId" />
        <property name="PrintStackTraces" />
        <property name="ProgramName" />
        <property name="RetryIntervals" />
        <property name="ServerIdleTime" />
        <property name="SOCKSProxyHost" />
        <property name="SOCKSProxyPort" />
        <property name="StdErr" />
        <property name="StdOut" />
        <property name="SyslogFacility" />
        <property name="ThreadPool.Client" class="threadpool" />
        <property name="ThreadPool.Server" class="threadpool" />
        <property name="ThreadPriority"/>
        <property name="ToStringMode" />
        <property name="Trace.Admin.Properties" />
        <property name="Trace.Admin.Logger" />
        <property name="Trace.Locator" />
        <property name="Trace.Network" />
        <property name="Trace.Protocol" />
        <property name="Trace.Retry" />
        <property name="Trace.Slicing" />
        <property name="Trace.ThreadPool" />
        <property name="UDP.RcvSize" />
        <property name="UDP.SndSize" />
        <property name="TCP.Backlog" />
        <property name="TCP.RcvSize" />
        <property name="TCP.SndSize" />
        <property name="UseApplicationClassLoader" />
        <property name="UseOSLog" />
        <property name="UseSyslog" />
        <property name="UseSystemdJournal" />
        <property name="Warn.AMICallback" />
        <property name="Warn.Connections" />
        <property name="Warn.Datagrams" />
        <property name="Warn.Dispatch" />
        <property name="Warn.Endpoints" />
        <property name="Warn.UnknownProperties" />
        <property name="Warn.UnusedProperties" />
        <property name="CacheMessageBuffers" />
        <property name="ThreadInterruptSafe" />
    </section>

    <section name="IceMX">
        <property name="Metrics.[any]" class="mx" />
    </section>

    <section name="IceDiscovery">
        <property name="Multicast" class="objectadapter" />
        <property name="Reply" class="objectadapter" />
        <property name="Locator" class="objectadapter" />
        <property name="Lookup"/>
        <property name="Timeout"/>
        <property name="RetryCount"/>
        <property name="LatencyMultiplier"/>
        <property name="Address"/>
        <property name="Port"/>
        <property name="Interface"/>
        <property name="DomainId"/>
    </section>

    <section name="IceLocatorDiscovery">
        <property name="Reply" class="objectadapter" />
        <property name="Locator" class="objectadapter" />
        <property name="Lookup"/>
        <property name="Timeout"/>
        <property name="RetryCount"/>
        <property name="RetryDelay"/>
        <property name="Address"/>
        <property name="Port"/>
        <property name="Interface"/>
        <property name="InstanceName"/>
        <property name="Trace.Lookup"/>
    </section>

    <section name="IceBox">
        <property name="InheritProperties" />
        <property name="InstanceName" deprecated="true" />
        <property name="LoadOrder" />
        <property name="PrintServicesReady" />
        <property name="Service.[any]" />
        <property name="ServiceManager" class="deprecatedobjectadapter" />
        <property name="Trace.ServiceObserver" />
        <property name="UseSharedCommunicator.[any]" />
    </section>

    <section name="IceBoxAdmin">
        <property name="ServiceManager.Proxy" class="proxy"/>
    </section>

    <section name="IceBridge">
        <property name="Source" class="objectadapter" />
        <property name="Target.Endpoints" />
        <property name="InstanceName" />
    </section>

    <section name="IceGridAdmin">
        <property name="AuthenticateUsingSSL" />
        <property name="MetricsConfig" />
        <property name="Username" />
        <property name="Password" />
        <property name="Replica" />
        <property name="Host" />
        <property name="Port" />
        <property name="InstanceName" />
        <property name="Server" class="objectadapter" />
        <property name="Discovery.Address" />
        <property name="Discovery.Interface" />
        <property name="Discovery.Lookup" />
        <property name="Discovery.Reply" class="objectadapter" />
        <property name="Discovery.Locator" class="objectadapter" />
        <property name="Trace.Observers" />
        <property name="Trace.SaveToRegistry" />
    </section>

    <section name="IceGrid">
        <property name="AdminRouter" class="objectadapter" />
        <property name="InstanceName" />
        <property name="Node" class="objectadapter" />
        <property name="Node.AllowRunningServersAsRoot" />
        <property name="Node.AllowEndpointsOverride" />
        <property name="Node.CollocateRegistry" />
        <property name="Node.Data" />
        <property name="Node.DisableOnFailure" />
        <property name="Node.Name" />
        <property name="Node.Output" />
        <property name="Node.ProcessorSocketCount" />
        <property name="Node.PrintServersReady" />
        <property name="Node.PropertiesOverride" />
        <property name="Node.RedirectErrToOut" />
        <property name="Node.Trace.Activator" />
        <property name="Node.Trace.Adapter" />
        <property name="Node.Trace.Admin" />
        <property name="Node.Trace.Patch" />
        <property name="Node.Trace.Replica" />
        <property name="Node.Trace.Server" />
        <property name="Node.UserAccounts" />
        <property name="Node.UserAccountMapper" class="proxy" />
        <property name="Node.WaitTime" />
        <property name="Registry.AdminCryptPasswords" />
        <property name="Registry.AdminPermissionsVerifier" class="proxy" />
        <property name="Registry.AdminSessionFilters" />
        <property name="Registry.AdminSessionManager" class="objectadapter" />
        <property name="Registry.AdminSSLPermissionsVerifier" class="proxy" />
        <property name="Registry.Client" class="objectadapter" />
        <property name="Registry.CryptPasswords" />
        <property name="Registry.DefaultTemplates" />
        <property name="Registry.Discovery" class="objectadapter" />
        <property name="Registry.Discovery.Enabled" />
        <property name="Registry.Discovery.Address" />
        <property name="Registry.Discovery.Port" />
        <property name="Registry.Discovery.Interface" />
        <property name="Registry.DynamicRegistration" />
        <property name="Registry.Internal" class="objectadapter" />
        <property name="Registry.LMDB.MapSize" />
        <property name="Registry.LMDB.Path" />
        <property name="Registry.NodeSessionTimeout" />
        <property name="Registry.PermissionsVerifier" class="proxy" />
        <property name="Registry.ReplicaName" />
        <property name="Registry.ReplicaSessionTimeout" />
        <property name="Registry.RequireNodeCertCN" />
        <property name="Registry.RequireReplicaCertCN" />
        <property name="Registry.Server" class="objectadapter" />
        <property name="Registry.SessionFilters" />
        <property name="Registry.SessionManager" class="objectadapter" />
        <property name="Registry.SessionTimeout" />
        <property name="Registry.SSLPermissionsVerifier" class="proxy"/>
        <property name="Registry.Trace.Admin" />
        <property name="Registry.Trace.Application" />
        <property name="Registry.Trace.Adapter" />
        <property name="Registry.Trace.Discovery" />
        <property name="Registry.Trace.Locator" />
        <property name="Registry.Trace.Node" />
        <property name="Registry.Trace.Object" />
        <property name="Registry.Trace.Patch" />
        <property name="Registry.Trace.Replica" />
        <property name="Registry.Trace.Server" />
        <property name="Registry.Trace.Session" />
        <property name="Registry.Trace.Subscriber"/>
        <property name="Registry.Trace.Topic"/>
        <property name="Registry.Trace.TopicManager"/>
        <property name="Registry.UserAccounts" />
    </section>

    <section name="IcePatch2">
        <property class="objectadapter" />
        <property name="Directory" />
        <property name="InstanceName" />
    </section>

    <section name="IcePatch2Client">
        <property name="ChunkSize" />
        <property name="Directory" />
        <property name="Proxy" />
        <property name="Remove" />
        <property name="Thorough" />
    </section>

    <section name="IceSSL">
        <property name="Alias" />
        <property name="CAs"/>
        <property name="CertAuthDir" deprecatedBy="IceSSL.CAs"/>
        <property name="CertAuthFile" deprecatedBy="IceSSL.CAs"/>
        <property name="CertStore" />
        <property name="CertStoreLocation" />
        <property name="CertFile" />
        <property name="CertVerifier" />
        <property name="CheckCertName" />
        <property name="CheckCRL" />
        <property name="Ciphers" />
        <property name="CertificateRevocationListFiles" />
        <property name="DefaultDir" />
        <property name="DH.[any]" />
        <property name="DHParams" />
        <property name="EntropyDaemon" />
        <property name="FindCert" />
        <property name="FindCert.[any]" deprecated="true"/>
        <property name="InitOpenSSL" />
        <property name="KeyFile"/>
        <property name="Keychain"/>
        <property name="KeychainPassword"/>
        <property name="Keystore" />
        <property name="KeystorePassword" />
        <property name="KeystoreType" />
        <property name="Password" />
        <property name="PasswordCallback" />
        <property name="PasswordRetryMax" />
        <property name="Protocols" />
        <property name="ProtocolVersionMax" />
        <property name="ProtocolVersionMin" />
        <property name="Random" />
        <property name="RevocationCheck" />
        <property name="RevocationCheckCacheOnly" />
        <property name="SchannelStrongCrypto" />
        <property name="Trace.Security" />
        <property name="TrustOnly" />
        <property name="TrustOnly.Client" />
        <property name="TrustOnly.Server" />
        <property name="TrustOnly.Server.[any]" />
        <property name="Truststore" />
        <property name="TruststorePassword" />
        <property name="TruststoreType" />
        <property name="UsePlatformCAs" />
        <property name="VerifyDepthMax" />
        <property name="VerifyPeer" />
    </section>

    <section name="IceStormAdmin">
        <property name="TopicManager.[any]" />
        <property name="Host" />
        <property name="Port" />
    </section>

    <section name="IceBT">
        <property name="RcvSize" />
        <property name="SndSize" />
    </section>

    <section name="Glacier2">
        <property name="AddConnectionContext"/>
        <property name="Client" class="objectadapter"/>
        <property name="Client.AlwaysBatch" />
        <property name="Client.Buffered" />
        <property name="Client.ForwardContext" />
        <property name="Client.SleepTime" />
        <property name="Client.Trace.Override" />
        <property name="Client.Trace.Reject" />
        <property name="Client.Trace.Request" />
        <property name="CryptPasswords" />
        <property name="Filter.Address.Reject" />
        <property name="Filter.Address.Accept" />
        <property name="Filter.ProxySizeMax" />
        <property name="Filter.Category.Accept" />
        <property name="Filter.Category.AcceptUser" />
        <property name="Filter.AdapterId.Accept" />
        <property name="Filter.Identity.Accept" />
        <property name="InstanceName" />
        <property name="PermissionsVerifier" class="proxy" />
        <property name="ReturnClientProxy" />
        <property name="SSLPermissionsVerifier" class="proxy" />
        <property name="RoutingTable.MaxSize" />
        <property name="Server" class="objectadapter" />
        <property name="Server.AlwaysBatch" />
        <property name="Server.Buffered" />
        <property name="Server.ForwardContext" />
        <property name="Server.SleepTime" />
        <property name="Server.Trace.Override" />
        <property name="Server.Trace.Request" />
        <property name="SessionManager" class="proxy" />
        <property name="SSLSessionManager" class="proxy" />
        <property name="SessionTimeout" />
        <property name="Trace.RoutingTable" />
        <property name="Trace.Session" />
    </section>

    <section name="Glacier2CryptPermissionsVerifier">
        <property name="[any].PermissionsVerifier" />
        <property name="[any].AdminPermissionsVerifier" />
    </section>

    <section name="Freeze">
        <property name="DbEnv.[any].CheckpointPeriod" />
        <property name="DbEnv.[any].DbHome" />
        <property name="DbEnv.[any].DbPrivate" />
        <property name="DbEnv.[any].DbRecoverFatal" />
        <property name="DbEnv.[any].EncodingVersion" />
        <property name="DbEnv.[any].LockFile" />
        <property name="DbEnv.[any].OldLogsAutoDelete" />
        <property name="DbEnv.[any].PeriodicCheckpointMinSize" />
        <property name="Evictor.[any].BtreeMinKey" />
        <property name="Evictor.[any].Checksum" />
        <property name="Evictor.[any].MaxTxSize" />
        <property name="Evictor.[any].PageSize" />
        <property name="Evictor.[any].PopulateEmptyIndices" />
        <property name="Evictor.[any].RollbackOnUserException" />
        <property name="Evictor.[any].SavePeriod" />
        <property name="Evictor.[any].SaveSizeTrigger" />
        <property name="Evictor.[any].StreamTimeout" />
        <property name="Map.[any].BtreeMinKey" />
        <property name="Map.[any].Checksum" />
        <property name="Map.[any].PageSize" />
        <property name="Trace.DbEnv" />
        <property name="Trace.Evictor" />
        <property name="Trace.Map" />
        <property name="Trace.Transaction" />
        <property name="Warn.Deadlocks" />
        <property name="Warn.Rollback" />
    </section>

</properties>