/qpid-0.16/java/broker/src/main/java/org/apache/qpid/server/virtualhost/VirtualHost.java

# · Java · 102 lines · 55 code · 27 blank · 20 comment · 0 complexity · 8c937c092c059b17018af92814054f49 MD5 · raw file

  1. /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. package org.apache.qpid.server.virtualhost;
  22. import java.util.Map;
  23. import java.util.UUID;
  24. import java.util.concurrent.ScheduledFuture;
  25. import org.apache.qpid.common.Closeable;
  26. import org.apache.qpid.server.binding.BindingFactory;
  27. import org.apache.qpid.server.configuration.ConfigStore;
  28. import org.apache.qpid.server.configuration.VirtualHostConfig;
  29. import org.apache.qpid.server.configuration.VirtualHostConfiguration;
  30. import org.apache.qpid.server.connection.IConnectionRegistry;
  31. import org.apache.qpid.server.exchange.ExchangeFactory;
  32. import org.apache.qpid.server.exchange.ExchangeRegistry;
  33. import org.apache.qpid.server.federation.BrokerLink;
  34. import org.apache.qpid.server.management.ManagedObject;
  35. import org.apache.qpid.server.queue.QueueRegistry;
  36. import org.apache.qpid.server.registry.IApplicationRegistry;
  37. import org.apache.qpid.server.security.SecurityManager;
  38. import org.apache.qpid.server.stats.StatisticsGatherer;
  39. import org.apache.qpid.server.store.DurableConfigurationStore;
  40. import org.apache.qpid.server.store.MessageStore;
  41. import org.apache.qpid.server.txn.DtxRegistry;
  42. public interface VirtualHost extends DurableConfigurationStore.Source, VirtualHostConfig, Closeable, StatisticsGatherer
  43. {
  44. IConnectionRegistry getConnectionRegistry();
  45. VirtualHostConfiguration getConfiguration();
  46. String getName();
  47. QueueRegistry getQueueRegistry();
  48. ExchangeRegistry getExchangeRegistry();
  49. ExchangeFactory getExchangeFactory();
  50. MessageStore getMessageStore();
  51. DurableConfigurationStore getDurableConfigurationStore();
  52. SecurityManager getSecurityManager();
  53. void close();
  54. ManagedObject getManagedObject();
  55. UUID getBrokerId();
  56. void scheduleHouseKeepingTask(long period, HouseKeepingTask task);
  57. long getHouseKeepingTaskCount();
  58. public long getHouseKeepingCompletedTaskCount();
  59. int getHouseKeepingPoolSize();
  60. void setHouseKeepingPoolSize(int newSize);
  61. int getHouseKeepingActiveCount();
  62. IApplicationRegistry getApplicationRegistry();
  63. BindingFactory getBindingFactory();
  64. void createBrokerConnection(String transport,
  65. String host,
  66. int port,
  67. String vhost,
  68. boolean durable,
  69. String authMechanism, String username, String password);
  70. public BrokerLink createBrokerConnection(UUID id, long createTime, Map<String,String> arguments);
  71. ConfigStore getConfigStore();
  72. DtxRegistry getDtxRegistry();
  73. void removeBrokerConnection(BrokerLink brokerLink);
  74. ScheduledFuture<?> scheduleTask(long delay, Runnable timeoutTask);
  75. }