Package jade.core.messaging
Class TopicManagementFEService
- java.lang.Object
-
- jade.core.FEService
-
- jade.core.messaging.TopicManagementFEService
-
public class TopicManagementFEService extends FEService
Front-end side service class for the TopicManagementService
-
-
Constructor Summary
Constructors Constructor Description TopicManagementFEService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetBEServiceClassName()In many cases for the Front-End service to work properly it is necessary that the real service (or possibly a modified version of it) is active in the Back-End.ServiceHelpergetHelper(Agent a)Subclasses must implement this method to return the helper for accessing this service.StringgetName()Subclasses must implement this method to return the name of this service.
-
-
-
Method Detail
-
getName
public String getName()
Description copied from class:FEServiceSubclasses must implement this method to return the name of this service. Such name must be specified by an agent in thegetHelper()method when retrieving the helper for this service.
-
getBEServiceClassName
public String getBEServiceClassName()
Description copied from class:FEServiceIn many cases for the Front-End service to work properly it is necessary that the real service (or possibly a modified version of it) is active in the Back-End. In such cases subclasses may redefine this method to return the fully qualified name of the class implementing the back-end side counterpart of this service.- Overrides:
getBEServiceClassNamein classFEService- Returns:
- The fully qualified name of the class implementing the back-end side counterpart of this service
-
getHelper
public ServiceHelper getHelper(Agent a)
Description copied from class:FEServiceSubclasses must implement this method to return the helper for accessing this service.
-
-