Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormkuppe2009-06-06 18:38:25 +0000
committermkuppe2009-06-06 18:38:25 +0000
commit8a11bc994e5597695e881d6db1685c7673050b7f (patch)
treef7c6f26e779fd624f1beb73f417980ddea4c8fa8 /protocols/bundles/ch.ethz.iks.slp
parent0a9379ac82bc3c14b37fc1c7190f4ecc9e0c709f (diff)
downloadorg.eclipse.ecf-8a11bc994e5597695e881d6db1685c7673050b7f.tar.gz
org.eclipse.ecf-8a11bc994e5597695e881d6db1685c7673050b7f.tar.xz
org.eclipse.ecf-8a11bc994e5597695e881d6db1685c7673050b7f.zip
Aligned/Reduced visibility of configuration gettersv20090610-0800
Added javadoc
Diffstat (limited to 'protocols/bundles/ch.ethz.iks.slp')
-rw-r--r--protocols/bundles/ch.ethz.iks.slp/src/main/java/ch/ethz/iks/slp/impl/SLPConfiguration.java11
1 files changed, 9 insertions, 2 deletions
diff --git a/protocols/bundles/ch.ethz.iks.slp/src/main/java/ch/ethz/iks/slp/impl/SLPConfiguration.java b/protocols/bundles/ch.ethz.iks.slp/src/main/java/ch/ethz/iks/slp/impl/SLPConfiguration.java
index d2ea7114c..cf68fca2e 100644
--- a/protocols/bundles/ch.ethz.iks.slp/src/main/java/ch/ethz/iks/slp/impl/SLPConfiguration.java
+++ b/protocols/bundles/ch.ethz.iks.slp/src/main/java/ch/ethz/iks/slp/impl/SLPConfiguration.java
@@ -513,11 +513,18 @@ class SLPConfiguration {
return CONVERGENCE_FAILERCOUNT;
}
- public boolean getDebugEnabled() {
+ /**
+ * Whether Debug mode is turned on or off
+ * @return true if debug mode is enabled
+ */
+ boolean getDebugEnabled() {
return DEBUG_ENABLED;
}
- public int getTCPTimeout() {
+ /**
+ * @return int defining when a TCP send should time out
+ */
+ int getTCPTimeout() {
// TODO wire this to the properties if necessary
return 5000; // 5sec
}

Back to the top