/* * JBoss, Home of Professional Open Source * Copyright 2005-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.core.management; import static javax.management.MBeanOperationInfo.ACTION; import java.util.List; import java.util.Map; import org.jboss.messaging.core.config.Configuration; /** * This interface describes the core management interface exposed by the server */ public interface MessagingServerControlMBean { // Attributes ---------------------------------------------------- public Map<String, Object> getBackupConnectorConfiguration(); public Map<String, Map<String, Object>> getAcceptorConfigurations(); String getVersion(); int getConnectionCount(); boolean isStarted(); List<String> getInterceptorClassNames(); boolean isClustered(); int getScheduledThreadPoolMaxSize(); long getSecurityInvalidationInterval(); boolean isSecurityEnabled(); boolean isRequireDestinations(); String getBindingsDirectory(); String getJournalDirectory(); String getJournalType(); boolean isJournalSyncTransactional(); boolean isJournalSyncNonTransactional(); int getJournalFileSize(); int getJournalMinFiles(); int getJournalMaxAIO(); boolean isCreateBindingsDir(); boolean isCreateJournalDir(); Configuration getConfiguration(); boolean isEnableMessageCounters(); int getMessageCounterMaxDayCount(); void setMessageCounterMaxDayCount(int count); long getMessageCounterSamplePeriod(); void setMessageCounterSamplePeriod(long newPeriod); public boolean isBackup(); public long getCallTimeout(); public long getConnectionScanPeriod(); public int getJournalBufferReuseSize(); public long getPagingMaxGlobalSizeBytes(); public int getPacketConfirmationBatchSize(); public String getPagingDirectory(); // Operations ---------------------------------------------------- @Operation(desc = "Create a queue with the specified address", impact = ACTION) void createQueue( @Parameter(name = "address", desc = "Address of the queue") String address, @Parameter(name = "name", desc = "Name of the queue") String name) throws Exception; @Operation(desc = "Create a queue", impact = ACTION) void createQueue( @Parameter(name = "address", desc = "Address of the queue") String address, @Parameter(name = "name", desc = "Name of the queue") String name, @Parameter(name = "filter", desc = "Filter of the queue") String filter, @Parameter(name = "durable", desc = "Is the queue durable?") boolean durable ) throws Exception; @Operation(desc = "Destroy a queue", impact = ACTION) void destroyQueue( @Parameter(name = "name", desc = "Name of the queue to destroy") String name) throws Exception; @Operation(desc = "Add an address to the post office", impact = ACTION) boolean addAddress( @Parameter(name = "address", desc = "The address to add") String address) throws Exception; @Operation(desc = "Remove an address from the post office", impact = ACTION) boolean removeAddress( @Parameter(name = "address", desc = "The address to remove") String address) throws Exception; void enableMessageCounters(); void disableMessageCounters(); void resetAllMessageCounters(); void resetAllMessageCounterHistories(); }