Package jadex.platform.service.awareness
Interface IPlatformCatalogService
-
public interface IPlatformCatalogService
Service for making available pre-defined catalog of platforms + addresses. Platforms are specified as URLs:-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFuture<java.lang.Void>
addPlatform(java.lang.String platformurl)
Adds a platform to the catalog.IFuture<java.lang.Void>
removePlatform(java.lang.String name)
Removes a platform from the catalog.
-
-
-
Method Detail
-
addPlatform
IFuture<java.lang.Void> addPlatform(java.lang.String platformurl)
Adds a platform to the catalog.- Parameters:
platformurl
- URL of the platform.- Returns:
- Null, when done.
-
removePlatform
IFuture<java.lang.Void> removePlatform(java.lang.String name)
Removes a platform from the catalog.- Parameters:
name
- Name of the platform.- Returns:
- Null, when done.
-
-
-