Interface ConnectorSchemaConfig

    • Method Detail

      • getItemNames

        java.util.List getItemNames()
        Deprecated.
        Gets the List of Items names.
        Returns:
        The item value
      • getItem

        ConnectorSchemaItemConfig getItem​(java.lang.Object name,
                                          boolean create)
        Deprecated.
        Parameters:
        name - the name of the schema item
        create - a boolean value specifying if the item should be created if it does not exist
        Returns:
        The item value
      • getItem

        ConnectorSchemaItemConfig getItem​(java.lang.Object name)
        Deprecated.
        Gets the item attribute of the ConnectorSchemaConfig object
        Parameters:
        name - the name of the schema item
        Returns:
        The item value
      • removeItem

        void removeItem​(java.lang.Object name)
        Deprecated.
        Deletes the specified schema item.
        Parameters:
        name - the name of the schema item to delete.
      • setItem

        void setItem​(java.lang.Object name,
                     ConnectorSchemaItemConfig item)
        Deprecated.
        Sets the item attribute of the ConnectorSchemaConfig object
        Parameters:
        name - The new item value
        item - The new item value
      • newItem

        ConnectorSchemaItemConfig newItem​(java.lang.Object name)
                                   throws java.lang.Exception
        Deprecated.
        Creates a new schema item.
        Parameters:
        name - the name of the new schema item
        Returns:
        the config object for the new item
        Throws:
        java.lang.Exception - An exception is thrown if this method fails.