Package jadex.bridge.service.component
Class ServiceInfo
- java.lang.Object
-
- jadex.bridge.service.component.ServiceInfo
-
public class ServiceInfo extends java.lang.Object
Simple struct for storing a pojo/domain service with its management part.
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Object
domainservice
The service domain object.protected BasicService
managementservice
The management object.
-
Constructor Summary
Constructors Constructor Description ServiceInfo(java.lang.Object domainservice, BasicService managementservice)
Create a new service info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
getDomainService()
Get the domain service.BasicService
getManagementService()
Get the management service.
-
-
-
Field Detail
-
domainservice
protected java.lang.Object domainservice
The service domain object.
-
managementservice
protected BasicService managementservice
The management object.
-
-
Constructor Detail
-
ServiceInfo
public ServiceInfo(java.lang.Object domainservice, BasicService managementservice)
Create a new service info.
-
-
Method Detail
-
getDomainService
public java.lang.Object getDomainService()
Get the domain service.- Returns:
- The domain service.
-
getManagementService
public BasicService getManagementService()
Get the management service.- Returns:
- The management service.
-
-