Interface IHelpline

All Known Implementing Classes:
HelplineService

public interface IHelpline
Basic interface for helpline. Allows to get local information about a person and add information about a person.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Add an information about a person.
    jadex.future.IIntermediateFuture<InformationEntry>
    Get all locally stored information about a person.
  • Method Details

    • getInformation

      jadex.future.IIntermediateFuture<InformationEntry> getInformation(String name)
      Get all locally stored information about a person.
      Parameters:
      name - The person's name.
      Returns:
      Future that contains all information records as collection.
    • addInformation

      void addInformation(String name, String info)
      Add an information about a person.
      Parameters:
      name - The person's name.
      info - The information.