Class AdHocCommandManager

    • Method Detail

      • getAddHocCommandsManager

        public static AdHocCommandManager getAddHocCommandsManager​(XMPPConnection connection)
        Returns the AdHocCommandManager related to the connection.
        Parameters:
        connection - the XMPP connection.
        Returns:
        the AdHocCommandManager associated with the connection.
      • registerCommand

        public void registerCommand​(String node,
                                    String name,
                                    Class<? extends LocalCommand> clazz)
        Registers a new command with this command manager, which is related to a connection. The node is an unique identifier of that command for the connection related to this command manager. The name is the human readable name of the command. The class is the class of the command, which must extend LocalCommand and have a default constructor.
        Parameters:
        node - the unique identifier of the command.
        name - the human readable name of the command.
        clazz - the class of the command, which must extend LocalCommand.
      • registerCommand

        public void registerCommand​(String node,
                                    String name,
                                    LocalCommandFactory factory)
        Registers a new command with this command manager, which is related to a connection. The node is an unique identifier of that command for the connection related to this command manager. The name is the human readable name of the command. The factory generates new instances of the command.
        Parameters:
        node - the unique identifier of the command.
        name - the human readable name of the command.
        factory - a factory to create new instances of the command.
      • getRemoteCommand

        public RemoteCommand getRemoteCommand​(Jid jid,
                                              String node)
        Returns a command that represents an instance of a command in a remote host. It is used to execute remote commands. The concept is similar to RMI. Every invocation on this command is equivalent to an invocation in the remote command.
        Parameters:
        jid - the full JID of the host of the remote command
        node - the identifier of the command
        Returns:
        a local instance equivalent to the remote command.