001    package org.shiftone.jrat.core.jmx;
002    
003    
004    /**
005     * @author jeff@shiftone.org (Jeff Drost)
006     */
007    public interface JmxRegistry {
008    
009        boolean isReady();
010    
011    
012        void registerMBean(Object object, String name);
013    }