Interface AdminTopicMBean

    • Method Detail

      • createTopic

        void createTopic​(String name,
                         String topicClassName,
                         int serverId)
        Creates a new topic on the selected server.
        Parameters:
        name - the topic name
        topicClassName - the topic class to instantiate
        serverId - the server where the topic will be deployed
      • createTopic

        void createTopic​(String name,
                         int serverId)
        Creates a new topic on the selected server. The topic will be an instance of Topic.
        Parameters:
        name - the topic name
        serverId - the server where the topic will be deployed
      • createTopic

        void createTopic​(String name)
        Creates a new topic on the local server.
        Parameters:
        name - the topic name
      • createQueue

        void createQueue​(String name,
                         String queueClassName,
                         int serverId)
        Creates a new queue on the selected server.
        Parameters:
        name - the topic name
        queueClassName - the queue class to instantiate
        serverId - the server where the queue will be deployed
      • createQueue

        void createQueue​(String name,
                         int serverId)
        Creates a new queue on the selected server. The queue will be an instance of Queue.
        Parameters:
        name - the topic name
        serverId - the server where the queue will be deployed
      • createQueue

        void createQueue​(String name)
        Creates a new queue on the local server.
        Parameters:
        name - the queue name
      • createUser

        void createUser​(String user,
                        String passwd,
                        int serverId,
                        String identityClassName)
                 throws Exception
        Creates a new user on the selected server.
        Parameters:
        user - the user name
        passwd - the user password
        serverId - the server where the user will be created
        identityClassName - the identity class name to instantiate
        Throws:
        Exception
      • createUser

        void createUser​(String user,
                        String passwd,
                        int serverId)
                 throws Exception
        Creates a new user on the selected server. SimpleIdentity class is used.
        Parameters:
        user - the user name
        passwd - the user password
        serverId - the server where the user will be created
        Throws:
        Exception
      • createUser

        void createUser​(String user,
                        String passwd)
                 throws Exception
        Creates a new user on the local server. SimpleIdentity class is used.
        Parameters:
        user - the user name
        passwd - the user password
        Throws:
        Exception