From do-not-reply at jboss.org Fri Jun 17 11:48:01 2011 Content-Type: multipart/mixed; boundary="===============6515703810603028418==" MIME-Version: 1.0 From: do-not-reply at jboss.org To: hornetq-commits at lists.jboss.org Subject: [hornetq-commits] JBoss hornetq SVN: r10846 - trunk/hornetq-core/src/main/java/org/hornetq/core/config. Date: Fri, 17 Jun 2011 11:48:01 -0400 Message-ID: <201106171548.p5HFm1I9031794@svn01.web.mwc.hst.phx2.redhat.com> --===============6515703810603028418== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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.j= ava Log: Fix javadoc issues. Modified: trunk/hornetq-core/src/main/java/org/hornetq/core/config/Configur= ation.java =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- 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 Tim Fox - * */ 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 inf= os); = /** - * Returns the name of the connector used to connect to the live node -= only used when using shared nothing (shared store =3D false). - *
+ * Returns the name of the connector used to connect to the live node -= only used when using + * shared nothing (shared store =3D false). */ String getLiveConnectorName(); = /** - * Sets the name of the connector used to connect to the live node - on= ly used when using shared nothing (shared store =3D false). + * Sets the name of the connector used to connect to the live node - on= ly used when using shared + * nothing (shared store =3D false). */ void setLiveConnectorName(String name); = @@ -864,13 +864,13 @@ */ List 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); } --===============6515703810603028418==--