blob: c800ee41f8e0106f95544f544221c60f72015fa9 (
plain)
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
|
// **********************************************************************
//
// Copyright (c) 2001
// ZeroC, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
package IceInternal;
public final class DefaultsAndOverrides
{
DefaultsAndOverrides(Ice.Properties properties)
{
String value;
defaultProtocol = properties.getPropertyWithDefault("Ice.Default.Protocol", "tcp");
value = properties.getProperty("Ice.Default.Host");
if(value.length() != 0)
{
defaultHost = value;
}
else
{
defaultHost = Network.getLocalHost(true);
}
defaultRouter = properties.getProperty("Ice.Default.Router");
value = properties.getProperty("Ice.Override.Timeout");
if(value.length() > 0)
{
overrideTimeout = true;
overrideTimeoutValue = properties.getPropertyAsInt("Ice.Override.Timeout");
}
else
{
overrideTimeout = false;
overrideTimeoutValue = -1;
}
value = properties.getProperty("Ice.Override.Compress");
if(value.length() > 0)
{
overrideComppress = true;
overrideComppressValue = properties.getPropertyAsInt("Ice.Override.Compress") != 0;
}
else
{
overrideComppress = false;
overrideComppressValue = false;
}
defaultLocator = properties.getProperty("Ice.Default.Locator");
}
final public String defaultHost;
final public String defaultProtocol;
final public String defaultRouter;
final public String defaultLocator;
final public boolean overrideTimeout;
final public int overrideTimeoutValue;
final public boolean overrideComppress;
final public boolean overrideComppressValue;
}
|