Interface WebConnectionsInterface

    • Method Detail

      • getWebConnection

        ConnectionDetail getWebConnection​(String componentId,
                                          String userId)
        get the connection corresponding to componentId and userId
        Parameters:
        componentId - : String
        userId - : String
        Returns:
        connection : ConnectionDetail
      • getWebConnectionById

        ConnectionDetail getWebConnectionById​(String connectionId,
                                              String userId)
        get the connection corresponding to connectionId
        Parameters:
        connectionId - : String
        userId - : String
        Returns:
        connection : ConnectionDetail
      • createWebConnection

        void createWebConnection​(ConnectionDetail connection)
        create a new connection
        Parameters:
        connection - : ConnectionDetail
      • deleteWebConnection

        void deleteWebConnection​(String connectionId,
                                 String userId)
        delete the connection corresponding to connectionId
        Parameters:
        connectionId - : String
        userId - : String
      • updateWebConnection

        void updateWebConnection​(String connectionId,
                                 String login,
                                 String password,
                                 String userId)
        update the connection corresponding to connectionId, with login and password
        Parameters:
        connectionId - : String
        login - : String
        password - : String
        userId - : String