Package jadex.bridge.service
Interface IServiceIdentifier
- 
- All Known Implementing Classes:
- ServiceIdentifier
 
 public interface IServiceIdentifierInterface for service identifier.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>getNetworkNames()Get the (security) network names.IComponentIdentifiergetProviderId()Get the service provider identifier.IResourceIdentifiergetResourceIdentifier()Get the resource identifier.ServiceScopegetScope()Get the visibility scope.java.lang.StringgetServiceName()Get the service name.ClassInfo[]getServiceSuperTypes()Get the service super types.ClassInfogetServiceType()Get the service type name.java.util.Set<java.lang.String>getTags()Get the service tags.booleanisUnrestricted()Check if the service has unrestricted access.
 
- 
- 
- 
Method Detail- 
getProviderIdIComponentIdentifier getProviderId() Get the service provider identifier.- Returns:
- The provider id.
 
 - 
getServiceNamejava.lang.String getServiceName() Get the service name.- Returns:
- The service name.
 
 - 
getServiceTypeClassInfo getServiceType() Get the service type name.- Returns:
- The service type name.
 
 - 
getServiceSuperTypesClassInfo[] getServiceSuperTypes() Get the service super types.- Returns:
- The service super types.
 
 - 
getResourceIdentifierIResourceIdentifier getResourceIdentifier() Get the resource identifier.- Returns:
- The resource identifier.
 
 - 
getScopeServiceScope getScope() Get the visibility scope.- Returns:
- The visibility scope.
 
 - 
getNetworkNamesjava.util.Set<java.lang.String> getNetworkNames() Get the (security) network names. Determines how it is accessible.- Returns:
- The network names.
 
 - 
isUnrestrictedboolean isUnrestricted() Check if the service has unrestricted access.- Returns:
- True, if it is unrestricted.
 
 - 
getTagsjava.util.Set<java.lang.String> getTags() Get the service tags.- Returns:
- The tags.
 
 
- 
 
-