Interface IServiceIDFactory
- 
- All Known Implementing Classes:
- ServiceIDFactory
 
 public interface IServiceIDFactoryServiceID factory contract.- See Also:
- ServiceIDFactory
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IServiceTypeIDcreateServiceTypeID(Namespace namespace, String serviceType)Create an IServiceTypeID.IServiceTypeIDcreateServiceTypeID(Namespace namespace, String[] serviceType)Create an IServiceTypeID.IServiceTypeIDcreateServiceTypeID(Namespace namespace, String[] serviceType, String[] protocols)Create an IServiceTypeID.IServiceTypeIDcreateServiceTypeID(Namespace namespace, String[] services, String[] scopes, String[] protocols, String namingAuthority)Create an IServiceTypeID.IServiceTypeIDcreateServiceTypeID(Namespace namespace, IServiceTypeID aServiceTypeID)Create an IServiceTypeID.
 
- 
- 
- 
Method Detail- 
createServiceTypeIDIServiceTypeID createServiceTypeID(Namespace namespace, String serviceType) Create an IServiceTypeID. Creates an immutable IServiceTypeID.- Parameters:
- namespace- the Namespace instance to create the service ID with. Must not be- null.
- serviceType- The service type. Must not be- null.
- Returns:
- IServiceTypeID created. Will not be null.
- Since:
- 3.0
 
 - 
createServiceTypeIDIServiceTypeID createServiceTypeID(Namespace namespace, String[] serviceType) Create an IServiceTypeID. Creates an immutable IServiceTypeID.- Parameters:
- namespace- the Namespace instance to create the service ID with. Must not be- null.
- serviceType- Array containing the ordered naming hierarchy from 0...n. Must not be- null.
- Returns:
- IServiceTypeID created. Will not be null.
- Since:
- 3.0
 
 - 
createServiceTypeIDIServiceTypeID createServiceTypeID(Namespace namespace, String[] services, String[] scopes, String[] protocols, String namingAuthority) Create an IServiceTypeID. Creates an immutable IServiceTypeID.- Parameters:
- namespace- the Namespace instance to create the service ID with. Must not be- null.
- services- Array containing the ordered naming hierarchy from 0...n. Must not be- null.
- scopes- Array containing all scopes or- IServiceTypeID.DEFAULT_SCOPEfor default. Must not be- null.
- protocols- Array containing all protocols or- IServiceTypeID.DEFAULT_PROTOfor default. Must not be- null.
- namingAuthority- the NamingAuthority or- IServiceTypeID.DEFAULT_NAfor default. Must not be- null.
- Returns:
- IServiceTypeID created. Will not be null.
- Since:
- 3.0
 
 - 
createServiceTypeIDIServiceTypeID createServiceTypeID(Namespace namespace, String[] serviceType, String[] protocols) Create an IServiceTypeID. Creates an immutable IServiceTypeID. NamingAuthority will be set toIServiceTypeID.DEFAULT_NA- Parameters:
- namespace- the Namespace instance to create the service ID with. Must not be- null.
- serviceType- Array containing the ordered naming hierarchy from 0...n. Must not be- null.
- protocols- Array containing the protocols. Must not be- null.
- Returns:
- IServiceTypeID created. Will not be null.
- Since:
- 3.0
 
 - 
createServiceTypeIDIServiceTypeID createServiceTypeID(Namespace namespace, IServiceTypeID aServiceTypeID) Create an IServiceTypeID. Creates an immutable IServiceTypeID from a non-nullIServiceTypeIDwith a differentNamespace.- Parameters:
- namespace- the Namespace instance to create the service type ID with. Must not be- null.
- aServiceTypeID- service type id. Must not be- null.
- Returns:
- IServiceTypeID created. Will not be null.
- Since:
- 3.0
 
 
- 
 
-