/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.activemq.artemis.core.server.management; import javax.management.ObjectName; import java.util.Set; import java.util.concurrent.ScheduledExecutorService; import org.apache.activemq.artemis.api.core.BroadcastGroupConfiguration; import org.apache.activemq.artemis.api.core.ICoreMessage; import org.apache.activemq.artemis.api.core.Message; import org.apache.activemq.artemis.api.core.RoutingType; import org.apache.activemq.artemis.api.core.SimpleString; import org.apache.activemq.artemis.api.core.TransportConfiguration; import org.apache.activemq.artemis.api.core.management.ObjectNameBuilder; import org.apache.activemq.artemis.core.config.BridgeConfiguration; import org.apache.activemq.artemis.core.config.ClusterConnectionConfiguration; import org.apache.activemq.artemis.core.config.Configuration; import org.apache.activemq.artemis.core.config.DivertConfiguration; import org.apache.activemq.artemis.core.management.impl.ActiveMQServerControlImpl; import org.apache.activemq.artemis.core.messagecounter.MessageCounterManager; import org.apache.activemq.artemis.core.paging.PagingManager; import org.apache.activemq.artemis.core.persistence.StorageManager; import org.apache.activemq.artemis.core.postoffice.PostOffice; import org.apache.activemq.artemis.core.remoting.server.RemotingService; import org.apache.activemq.artemis.core.security.Role; import org.apache.activemq.artemis.core.security.SecurityStore; import org.apache.activemq.artemis.core.server.ActiveMQComponent; import org.apache.activemq.artemis.core.server.ActiveMQServer; import org.apache.activemq.artemis.core.server.Divert; import org.apache.activemq.artemis.core.server.Queue; import org.apache.activemq.artemis.core.server.QueueFactory; import org.apache.activemq.artemis.core.server.cluster.Bridge; import org.apache.activemq.artemis.core.server.cluster.BroadcastGroup; import org.apache.activemq.artemis.core.server.cluster.ClusterConnection; import org.apache.activemq.artemis.core.server.impl.AddressInfo; import org.apache.activemq.artemis.core.settings.HierarchicalRepository; import org.apache.activemq.artemis.core.settings.impl.AddressSettings; import org.apache.activemq.artemis.core.transaction.ResourceManager; import org.apache.activemq.artemis.spi.core.remoting.Acceptor; public interface ManagementService extends NotificationService, ActiveMQComponent { // Configuration MessageCounterManager getMessageCounterManager(); SimpleString getManagementAddress(); SimpleString getManagementNotificationAddress(); ObjectNameBuilder getObjectNameBuilder(); // Resource Registration void setStorageManager(StorageManager storageManager); ActiveMQServerControlImpl registerServer(final PostOffice postOffice, final SecurityStore securityStore, final StorageManager storageManager, final Configuration configuration, final HierarchicalRepository<AddressSettings> addressSettingsRepository, final HierarchicalRepository<Set<Role>> securityRepository, final ResourceManager resourceManager, final RemotingService remotingService, final ActiveMQServer messagingServer, final QueueFactory queueFactory, final ScheduledExecutorService scheduledThreadPool, final PagingManager pagingManager, final boolean backup) throws Exception; void unregisterServer() throws Exception; void registerInJMX(ObjectName objectName, Object managedResource) throws Exception; void unregisterFromJMX(final ObjectName objectName) throws Exception; void registerInRegistry(String resourceName, Object managedResource); void unregisterFromRegistry(final String resourceName); void registerAddress(AddressInfo addressInfo) throws Exception; void unregisterAddress(SimpleString address) throws Exception; void registerQueue(Queue queue, SimpleString address, StorageManager storageManager) throws Exception; void unregisterQueue(SimpleString name, SimpleString address, RoutingType routingType) throws Exception; void registerAcceptor(Acceptor acceptor, TransportConfiguration configuration) throws Exception; void unregisterAcceptors(); void registerDivert(Divert divert, DivertConfiguration config) throws Exception; void unregisterDivert(SimpleString name, SimpleString address) throws Exception; void registerBroadcastGroup(BroadcastGroup broadcastGroup, BroadcastGroupConfiguration configuration) throws Exception; void unregisterBroadcastGroup(String name) throws Exception; // void registerDiscoveryGroup(DiscoveryGroup discoveryGroup, DiscoveryGroupConfiguration configuration) throws Exception; //void unregisterDiscoveryGroup(String name) throws Exception; void registerBridge(Bridge bridge, BridgeConfiguration configuration) throws Exception; void unregisterBridge(String name) throws Exception; void registerCluster(ClusterConnection cluster, ClusterConnectionConfiguration configuration) throws Exception; void unregisterCluster(String name) throws Exception; Object getResource(String resourceName); Object[] getResources(Class<?> resourceType); ICoreMessage handleMessage(Message message) throws Exception; }