/* * JBoss, Home of Professional Open Source * Copyright 2008, Red Hat Middleware LLC, and individual contributors * by the @authors tag. See the copyright.txt in the distribution for a * full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.messaging.jms.server.management; import java.util.List; import org.jboss.messaging.core.persistence.StorageManager; import org.jboss.messaging.core.postoffice.PostOffice; import org.jboss.messaging.core.server.Queue; import org.jboss.messaging.core.settings.HierarchicalRepository; import org.jboss.messaging.core.settings.impl.QueueSettings; import org.jboss.messaging.jms.JBossQueue; import org.jboss.messaging.jms.JBossTopic; import org.jboss.messaging.jms.client.JBossConnectionFactory; import org.jboss.messaging.jms.server.JMSServerManager; /** * @author <a href="mailto:jmesnil@redhat.com">Jeff Mesnil</a> * * @version <tt>$Revision$</tt> * */ public interface JMSManagementService { void registerJMSServer(JMSServerManager server) throws Exception; void unregisterJMSServer() throws Exception; void registerQueue(JBossQueue queue, Queue coreQueue, String jndiBinding, PostOffice postOffice, StorageManager storageManager, HierarchicalRepository<QueueSettings> queueSettingsRepository) throws Exception; void unregisterQueue(String name) throws Exception; void registerTopic(JBossTopic topic, String jndiBinding, PostOffice postOffice, StorageManager storageManager) throws Exception; void unregisterTopic(String name) throws Exception; void registerConnectionFactory(String name, JBossConnectionFactory connectionFactory, List<String> bindings) throws Exception; void unregisterConnectionFactory(String name) throws Exception; }