[jboss-cvs] JBossAS SVN: r81833 - trunk/varia/src/main/org/jboss/services/binding/impl.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Nov 30 11:55:26 EST 2008


Author: bstansberry at jboss.com
Date: 2008-11-30 11:55:25 -0500 (Sun, 30 Nov 2008)
New Revision: 81833

Modified:
   trunk/varia/src/main/org/jboss/services/binding/impl/PojoServiceBindingStore.java
Log:
[JBAS-6259] Fix method signature typo

Modified: trunk/varia/src/main/org/jboss/services/binding/impl/PojoServiceBindingStore.java
===================================================================
--- trunk/varia/src/main/org/jboss/services/binding/impl/PojoServiceBindingStore.java	2008-11-30 16:53:20 UTC (rev 81832)
+++ trunk/varia/src/main/org/jboss/services/binding/impl/PojoServiceBindingStore.java	2008-11-30 16:55:25 UTC (rev 81833)
@@ -49,7 +49,7 @@
  * @author Brian Stansberry
  * @version $Revision$
  */
- at ManagementObject(name="PojoServiceBindingStore",
+ at ManagementObject(name="PojoServiceBindingStore", type="ServiceBindingStore",
                   componentType=@ManagementComponent(type="MCBean", subtype="ServiceBindingStore"),
       properties=ManagementProperties.EXPLICIT)
 public class PojoServiceBindingStore implements ServiceBindingStore
@@ -323,12 +323,12 @@
     */
    @ManagementProperty(description="the set of bindings that should be associated " +
          "with each binding set, whose hostname/port/bindAddress should not vary")
-   public Set<ManagedServiceBinding> geFixedBindings()
+   public Set<ManagedServiceBinding> getFixedBindings()
    {
       return new HashSet<ManagedServiceBinding>(fixedBindings.keySet());
    }
    
-   @ManagementProperty
+   @ManagementProperty(description="the named binding sets")
    public Set<ServiceBindingSet> getBindingSets()
    {
       return new HashSet<ServiceBindingSet>(bindingSets.values());




More information about the jboss-cvs-commits mailing list