/* * JBoss, Home of Professional Open Source. * Copyright (c) 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file 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.as.test.integration.common.jms; import org.jboss.as.controller.client.ModelControllerClient; import org.jboss.dmr.ModelNode; /** * Utility to administrate JMS-related resources on the server. An separate implementation should be created for * every possible JMS provider to be tested. * Use JMSOperationsProvider to get instances of implementing classes. * * Specify the fully qualified name of the activated implementation class in resources/jmsoperations.properties file. * @author <a href="jmartisk@redhat.com">Jan Martiska</a> */ public interface JMSOperations { ModelControllerClient getControllerClient(); ModelNode getServerAddress(); String getProviderName(); void createJmsQueue(final String queueName, final String jndiName); void createJmsQueue(final String queueName, final String jndiName, ModelNode attributes); void createJmsTopic(final String topicName, final String jndiName); void createJmsTopic(final String topicName, final String jndiName, ModelNode attributes); void removeJmsQueue(final String queueName); void removeJmsTopic(final String topicName); void addJmsConnectionFactory(final String name, final String jndiName, ModelNode attributes); void removeJmsConnectionFactory(final String name); void addJmsBridge(String name, ModelNode attributes); void removeJmsBridge(String name); void addCoreQueue(final String queueName, final String queueAddress, boolean durable); void removeCoreQueue(final String queueName); void close(); void addJmsConnector(String connectorName, String socketBinding, String endpoint); void removeJmsConnector(String connectorName); /** * Set system properties for the given destination and resourceAdapter. * * The system property for the given destination is {@code destination} and the one for the resourceAdapter is {@code resource.adapter}. */ void setSystemProperties(String destination, String resourceAdapter); void removeSystemProperties(); void addSocketBinding(String bindingName, ModelNode... clientMappings); void removeSocketBinding(String bindingName); }