Package jadex.micro.examples.helpline
Interface IHelpline
- 
- All Known Implementing Classes:
- HelplineService
 
 public interface IHelplineBasic interface for helpline. Allows to get local information about a person and add information about a person.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddInformation(java.lang.String name, java.lang.String info)Add an information about a person.IIntermediateFuture<InformationEntry>getInformation(java.lang.String name)Get all locally stored information about a person.
 
- 
- 
- 
Method Detail- 
getInformationIIntermediateFuture<InformationEntry> getInformation(java.lang.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.
 
 - 
addInformationvoid addInformation(java.lang.String name, java.lang.String info)Add an information about a person.- Parameters:
- name- The person's name.
- info- The information.
 
 
- 
 
-