Package jadex.micro.helpline
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 TypeMethodDescriptionvoid
addInformation
(String name, String info) Add an information about a person.jadex.future.IIntermediateFuture
<InformationEntry> getInformation
(String name) Get all locally stored information about a person.
-
Method Details
-
getInformation
Get all locally stored information about a person.- Parameters:
name
- The person's name.- Returns:
- Future that contains all information records as collection.
-
addInformation
Add an information about a person.- Parameters:
name
- The person's name.info
- The information.
-