![JAR search and dependency download from the Maven repository](/logo.png)
jadex.micro.helpline.IHelpline Maven / Gradle / Ivy
The newest version!
package jadex.micro.helpline;
import jadex.future.IIntermediateFuture;
import jadex.providedservice.annotation.Security;
/**
* Basic interface for helpline.
* Allows to get local information about a person and
* add information about a person.
*/
@Security(roles=Security.UNRESTRICTED)
public interface IHelpline
{
/**
* Get all locally stored information about a person.
* @param name The person's name.
* @return Future that contains all information records as collection.
*/
public IIntermediateFuture getInformation(String name);
/**
* Add an information about a person.
* @param name The person's name.
* @param info The information.
*/
public void addInformation(String name, String info);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy