[jboss-cvs] JBossAS SVN: r110666 - branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/main/java/org/jboss/as/integration/hornetq/management/jms.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Feb 14 12:25:24 EST 2011


Author: ataylor
Date: 2011-02-14 12:25:24 -0500 (Mon, 14 Feb 2011)
New Revision: 110666

Modified:
   branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/main/java/org/jboss/as/integration/hornetq/management/jms/AddressSettingsMapper.java
Log:
fixed missing mapper attribute

Modified: branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/main/java/org/jboss/as/integration/hornetq/management/jms/AddressSettingsMapper.java
===================================================================
--- branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/main/java/org/jboss/as/integration/hornetq/management/jms/AddressSettingsMapper.java	2011-02-14 15:53:09 UTC (rev 110665)
+++ branches/JBPAPP_5_1_0_Final_HornetQ_2_2/hornetq-int/src/main/java/org/jboss/as/integration/hornetq/management/jms/AddressSettingsMapper.java	2011-02-14 17:25:24 UTC (rev 110666)
@@ -88,6 +88,7 @@
           "expiryAddress",
           "maxSize",
           "pageSize",
+          "pageMaxCacheSize",
           "maxDeliveryAttempts",
           "redeliveryDelay",
           "lastValueQueue",
@@ -103,6 +104,7 @@
           "expiryAddress",
           "maxSize",
           "pageSize",
+          "pageMaxCacheSize",
           "maxDeliveryAttempts",
           "redeliveryDelay",
           "lastValueQueue",
@@ -119,6 +121,7 @@
           SimpleMetaType.INTEGER_PRIMITIVE,
           SimpleMetaType.INTEGER_PRIMITIVE,
           SimpleMetaType.INTEGER_PRIMITIVE,
+          SimpleMetaType.INTEGER_PRIMITIVE,
           SimpleMetaType.LONG_PRIMITIVE,
           SimpleMetaType.BOOLEAN_PRIMITIVE,
           SimpleMetaType.LONG_PRIMITIVE,
@@ -151,6 +154,7 @@
       cvs.set("expiryAddress", new SimpleValueSupport(SimpleMetaType.STRING, addressSettings.getExpiryAddress()));
       cvs.set("maxSize", new SimpleValueSupport(SimpleMetaType.INTEGER_PRIMITIVE, addressSettings.getMaxSizeBytes()));
       cvs.set("pageSize", new SimpleValueSupport(SimpleMetaType.INTEGER_PRIMITIVE, addressSettings.getPageSizeBytes()));
+      cvs.set("pageMaxCacheSize", new SimpleValueSupport(SimpleMetaType.INTEGER_PRIMITIVE, addressSettings.getPageCacheMaxSize()));
       cvs.set("maxDeliveryAttempts", new SimpleValueSupport(SimpleMetaType.INTEGER_PRIMITIVE, addressSettings.getMaxDeliveryAttempts()));
       cvs.set("redeliveryDelay", new SimpleValueSupport(SimpleMetaType.LONG_PRIMITIVE, addressSettings.getRedeliveryDelay()));
       cvs.set("lastValueQueue", new SimpleValueSupport(SimpleMetaType.BOOLEAN_PRIMITIVE, addressSettings.isLastValueQueue()));



More information about the jboss-cvs-commits mailing list