[hornetq-commits] JBoss hornetq SVN: r10724 - branches/HORNETQ-698_SplitJournal/hornetq-core/src/main/java/org/hornetq/core/config.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed May 25 13:24:00 EDT 2011


Author: borges
Date: 2011-05-25 13:24:00 -0400 (Wed, 25 May 2011)
New Revision: 10724

Modified:
   branches/HORNETQ-698_SplitJournal/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java
Log:
Adjust javadoc references.

Modified: branches/HORNETQ-698_SplitJournal/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java
===================================================================
--- branches/HORNETQ-698_SplitJournal/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java	2011-05-24 15:04:43 UTC (rev 10723)
+++ branches/HORNETQ-698_SplitJournal/hornetq-core/src/main/java/org/hornetq/core/config/Configuration.java	2011-05-25 17:24:00 UTC (rev 10724)
@@ -29,20 +29,20 @@
 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 */
    String getName();
-   
+
    /** To be used on dependency management on the application server */
    void setName(String name);
 
@@ -204,7 +204,7 @@
     * Sets whether this server is manageable using JMX or not.
     */
    void setJMXManagementEnabled(boolean enabled);
-   
+
    /**
     * Returns the domain used by JMX MBeans (provided JMX management is enabled).
     * <br>
@@ -214,7 +214,7 @@
 
    /**
     * Sets the domain used by JMX MBeans (provided JMX management is enabled).
-    * 
+    *
     * Changing this JMX domain is required if multiple HornetQ servers are run inside
     * the same JVM and all servers are using the same MBeanServer.
     */
@@ -280,7 +280,7 @@
 
    /**
     * Returns the name of the connector used to connect to the live node - only used when using shared nothing (shared store = false).
-    * <br> 
+    * <br>
     */
    String getLiveConnectorName();
 
@@ -599,7 +599,7 @@
    /**
     * Returns the buffer size (in bytes) for AIO.
     * <br>
-    * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_JOURNAL_BUFFER_SIZE_AIO}.
+    * Default value is {@value org.hornetq.core.journal.impl.JournalConstants#DEFAULT_JOURNAL_BUFFER_SIZE_AIO}.
     */
    int getJournalBufferSize_AIO();
 
@@ -611,7 +611,7 @@
    /**
     * Returns the maximum number of write requests for NIO journal.
     * <br>
-    * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_JOURNAL_MAX_IO_NIO}.
+    * Default value is {@value org.hornetq.core.journal.impl.JournalConstants#DEFAULT_JOURNAL_MAX_IO_NIO}.
     */
    int getJournalMaxIO_NIO();
 
@@ -623,7 +623,7 @@
    /**
     * Returns the timeout (in nanoseconds) used to flush buffers in the NIO.
     * <br>
-    * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_JOURNAL_BUFFER_TIMEOUT_NIO}.
+    * Default value is {@value org.hornetq.core.journal.impl.JournalConstants#DEFAULT_JOURNAL_BUFFER_TIMEOUT_NIO}.
     */
    int getJournalBufferTimeout_NIO();
 
@@ -635,7 +635,7 @@
    /**
     * Returns the buffer size (in bytes) for NIO.
     * <br>
-    * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_JOURNAL_BUFFER_SIZE_NIO}.
+    * Default value is {@value org.hornetq.core.journal.impl.JournalConstants#DEFAULT_JOURNAL_BUFFER_SIZE_NIO}.
     */
    int getJournalBufferSize_NIO();
 
@@ -737,7 +737,7 @@
    void setWildcardRoutingEnabled(boolean enabled);
 
    /**
-    * Returns the timeout (in milliseconds) after which transactions is removed 
+    * Returns the timeout (in milliseconds) after which transactions is removed
     * from the resource manager after it was created.
     * <br>
     * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_TRANSACTION_TIMEOUT}.
@@ -745,7 +745,7 @@
    long getTransactionTimeout();
 
    /**
-    * Sets the timeout (in milliseconds) after which transactions is removed 
+    * Sets the timeout (in milliseconds) after which transactions is removed
     * from the resource manager after it was created.
     */
    void setTransactionTimeout(long timeout);
@@ -771,7 +771,7 @@
 
    /**
     * Sets the sample period to take message counter snapshot.
-    * 
+    *
     * @param period value must be greater than 1000ms
     */
    void setMessageCounterSamplePeriod(long period);
@@ -785,13 +785,13 @@
 
    /**
     * Sets the maximum number of days kept in memory for message counter.
-    * 
+    *
     * @param maxDayHistory value must be greater than 0
     */
    void setMessageCounterMaxDayHistory(int maxDayHistory);
 
    /**
-    * Returns the frequency (in milliseconds)  to scan transactions to detect which transactions 
+    * Returns the frequency (in milliseconds)  to scan transactions to detect which transactions
     * have timed out.
     * <br>
     * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_TRANSACTION_TIMEOUT_SCAN_PERIOD}.
@@ -799,13 +799,13 @@
    long getTransactionTimeoutScanPeriod();
 
    /**
-    * Sets the frequency (in milliseconds)  to scan transactions to detect which transactions 
+    * Sets the frequency (in milliseconds)  to scan transactions to detect which transactions
     * have timed out.
     */
    void setTransactionTimeoutScanPeriod(long period);
 
    /**
-    * Returns the frequency (in milliseconds)  to scan messages to detect which messages 
+    * Returns the frequency (in milliseconds)  to scan messages to detect which messages
     * have expired.
     * <br>
     * Default value is {@value org.hornetq.core.config.impl.ConfigurationImpl#DEFAULT_MESSAGE_EXPIRY_SCAN_PERIOD}.
@@ -813,7 +813,7 @@
    long getMessageExpiryScanPeriod();
 
    /**
-    * Sets the frequency (in milliseconds)  to scan messages to detect which messages 
+    * Sets the frequency (in milliseconds)  to scan messages to detect which messages
     * have expired.
     */
    void setMessageExpiryScanPeriod(long messageExpiryScanPeriod);
@@ -831,7 +831,7 @@
    void setMessageExpiryThreadPriority(int messageExpiryThreadPriority);
 
    /**
-    * 
+    *
     * @return A list of AddressSettings per matching to be deployed to the address settings repository
     */
    Map<String, AddressSettings> getAddressesSettings();
@@ -842,25 +842,25 @@
    void setAddressesSettings(Map<String, AddressSettings> addressesSettings);
 
    /**
-    * 
+    *
     * @param roles a list of roles per matching
     */
    void setSecurityRoles(Map<String, Set<Role>> roles);
 
    /**
-    * 
+    *
     * @return a list of roles per matching
     */
    Map<String, Set<Role>> getSecurityRoles();
 
    /**
-    * 
-    * @param 
+    *
+    * @param
     */
    void setConnectorServiceConfigurations(List<ConnectorServiceConfiguration> configs);
    /**
-    * 
-    * @return 
+    *
+    * @return
     */
    List<ConnectorServiceConfiguration> getConnectorServiceConfigurations();
 



More information about the hornetq-commits mailing list