annotate src/clojure/contrib/jmx/server.clj @ 10:ef7dbbd6452c

added clojure source goodness
author Robert McIntyre <rlm@mit.edu>
date Sat, 21 Aug 2010 06:25:44 -0400
parents
children
rev   line source
rlm@10 1 ;; JMX server APIs for Clojure
rlm@10 2 ;; docs in clojure/contrib/jmx.clj!!
rlm@10 3
rlm@10 4 ;; by Stuart Halloway
rlm@10 5
rlm@10 6 ;; Copyright (c) Stuart Halloway, 2009. All rights reserved. The use
rlm@10 7 ;; and distribution terms for this software are covered by the Eclipse
rlm@10 8 ;; Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php)
rlm@10 9 ;; which can be found in the file epl-v10.html at the root of this
rlm@10 10 ;; distribution. By using this software in any fashion, you are
rlm@10 11 ;; agreeing to be bound by the terms of this license. You must not
rlm@10 12 ;; remove this notice, or any other, from this software.
rlm@10 13
rlm@10 14 (in-ns 'clojure.contrib.jmx)
rlm@10 15
rlm@10 16 (defn register-mbean [mbean mbean-name]
rlm@10 17 (.registerMBean *connection* mbean (as-object-name mbean-name)))
rlm@10 18