You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by de...@apache.org on 2009/10/22 12:25:30 UTC

svn commit: r828638 - /activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java

Author: dejanb
Date: Thu Oct 22 10:25:30 2009
New Revision: 828638

URL: http://svn.apache.org/viewvc?rev=828638&view=rev
Log:
https://issues.apache.org/activemq/browse/AMQ-2352 - jmx system properties for web

Modified:
    activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java

Modified: activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java?rev=828638&r1=828637&r2=828638&view=diff
==============================================================================
--- activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java (original)
+++ activemq/trunk/activemq-web/src/main/java/org/apache/activemq/web/config/SystemPropertiesConfiguration.java Thu Oct 22 10:25:30 2009
@@ -55,11 +55,11 @@
 	}
 
 	public String getJmxPassword() {
-		return System.getProperty(PROPERTY_JMX_USER);
+		return System.getProperty(PROPERTY_JMX_PASSWORD);
 	}
 
 	public String getJmxUser() {
-		return System.getProperty(PROPERTY_JMX_PASSWORD);
+		return System.getProperty(PROPERTY_JMX_USER);
 	}
 
 }
\ No newline at end of file