[hornetq-commits] JBoss hornetq SVN: r10846 - trunk/hornetq-core/src/main/java/org/hornetq/core/config.

do-not-reply at jboss.org do-not-reply at jboss.org
Fri Jun 17 11:48:01 EDT 2011


Author: borges
Date: 2011-06-17 11:48:01 -0400 (Fri, 17 Jun 2011)
New Revision: 10846

Modified:
   trunk/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java
Log:
Fix javadoc issues.

Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java
===================================================================
--- trunk/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java	2011-06-17 15:47:32 UTC (rev 10845)
+++ trunk/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java	2011-06-17 15:48:01 UTC (rev 10846)
@@ -29,21 +29,19 @@
 import org.hornetq.spi.core.logging.LogDelegateFactory;
 
 /**
- *
  * A Configuration is used to configure HornetQ servers.
  *
  * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
- *
  */
 public interface Configuration extends Serializable
 {
    // General attributes -------------------------------------------------------------------
 
 
-   /** To be used on dependency management on the application server */
+   /** To be used on dependency management on the application server. */
    String getName();
 
-   /** To be used on dependency management on the application server */
+   /** To be used on dependency management on the application server. */
    void setName(String name);
 
    /**
@@ -59,13 +57,14 @@
    void setClustered(boolean clustered);
 
    /**
-    * returns whether a backup will auto die when a live server is failing back
+    * Returns whether a backup will auto die when a live server is failing back.
+    *
     * @return
     */
    public boolean isAllowAutoFailBack();
 
    /**
-    * whether a backup will auto die when a live server is failing back
+    * Whether a backup will auto die when a live server is failing back.
     *
     * @param allowAutoFailBack true if allowed
     */
@@ -279,13 +278,14 @@
    void setConnectorConfigurations(Map<String, TransportConfiguration> infos);
 
    /**
-    * Returns the name of the connector used to connect to the live node - only used when using shared nothing (shared store = false).
-    * <br>
+    * Returns the name of the connector used to connect to the live node - only used when using
+    * shared nothing (shared store = false).
     */
    String getLiveConnectorName();
 
    /**
-    * Sets the name of the connector used to connect to the live node - only used when using shared nothing (shared store = false).
+    * Sets the name of the connector used to connect to the live node - only used when using shared
+    * nothing (shared store = false).
     */
    void setLiveConnectorName(String name);
 
@@ -864,13 +864,13 @@
     */
    List<ConnectorServiceConfiguration> getConnectorServiceConfigurations();
 
-   /*
-   * how long to wait before failback occurs on restart
-   * */
+   /**
+    * How long to wait before failback occurs on restart.
+    */
    long getFailbackDelay();
 
-   /*
-   * set the failback delay
-   * */
+   /**
+    * Set the failback delay.
+    */
    void setFailbackDelay(long delay);
 }



More information about the hornetq-commits mailing list