Class JmsRealmFactory

java.lang.Object
org.frankframework.jms.JmsRealmFactory

public class JmsRealmFactory extends Object
Singleton that has the different jmsRealms.
Typical use: JmsRealmFactory.getInstance().<method to execute>
Author:
Johan Verrips IOS
See Also:
  • Method Details

    • getInstance

      public static JmsRealmFactory getInstance()
      Get a hold of the singleton JmsRealmFactory
    • clear

      public void clear()
      Test method to cleanup the static references
    • getJmsRealm

      public JmsRealm getJmsRealm(String jmsRealmName)
      Get a requested JmsRealm with the given name, null is returned if no realm under given name
    • getConnectionFactoryNames

      public List<String> getConnectionFactoryNames()
    • getRegisteredRealmNames

      public Iterator<String> getRegisteredRealmNames()
      Get the realmNames as an Iterator, in the order that they were declared
    • getRegisteredRealmNamesAsList

      public List<String> getRegisteredRealmNamesAsList()
      Get the names as a list
    • registerJmsRealm

      public void registerJmsRealm(JmsRealm jmsRealm)
      Register a Realm
    • toString

      public String toString()
      Overrides:
      toString in class Object