Package uk.ac.starlink.vo
Class RegistryProtocol
java.lang.Object
uk.ac.starlink.vo.RegistryProtocol
Defines the details of a registry access protocol.
- Since:
- 9 Apr 2014
- Author:
- Mark Taylor
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final RegistryProtocol[]
Known protocols.static final RegistryProtocol
Protocol instance for Relational Registry 1.0.static final RegistryProtocol
Protocol instance for Registry Interface 1.0. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
RegistryProtocol
(String shortName, String fullName, String[] dfltUrls) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionabstract RegistryQuery
createIdListQuery
(String[] ivoids, Capability capability, URL regUrl) Constructs a registry query that gets results for a list of given IVO ID strings, optionally restricted by a given capability.abstract RegistryQuery
createKeywordQuery
(String[] keywords, ResourceField[] rfs, boolean isOr, Capability capability, URL regUrl) Constructs a registry query that gets results for resources with a match for one or all of a given set of keywords found in a selection of resource fields.abstract String[]
discoverRegistryUrls
(String regUrl0) Searches a given registry to discover new endpoint URLs serving this registry protocol.String[]
Returns default endpoint URLs for this protocol.Returns the full name for this protocol.Returns a short name for this protocol.abstract boolean
hasCapability
(Capability stdCap, RegCapabilityInterface resCap) Indicates whether a given RegCapabilityInterface object is an instance of a given capability.
-
Field Details
-
RI1
Protocol instance for Registry Interface 1.0. -
REGTAP
Protocol instance for Relational Registry 1.0. -
PROTOCOLS
Known protocols.
-
-
Constructor Details
-
RegistryProtocol
Constructor.- Parameters:
shortName
- short namefullName
- full namedfltUrls
- strings giving some default registry endpoints for this access protocol
-
-
Method Details
-
getShortName
Returns a short name for this protocol.- Returns:
- short name
-
getFullName
Returns the full name for this protocol.- Returns:
- full name
-
getDefaultRegistryUrls
Returns default endpoint URLs for this protocol.- Returns:
- endpoint URL strings
-
discoverRegistryUrls
Searches a given registry to discover new endpoint URLs serving this registry protocol.- Parameters:
regUrl0
- bootstrap registry endpoint URL- Returns:
- registry endpoint URLs discovered from the registry
- Throws:
IOException
-
createIdListQuery
Constructs a registry query that gets results for a list of given IVO ID strings, optionally restricted by a given capability. The resulting query supplies results for each resource which is all of: (a) in the registry, (b) in theivoids
list, and (c) has the given capability Ifcapability
is null, then restriction (c) does not apply. If the input list of IDs is null or empty, the return value will be null.- Parameters:
ivoids
- ID values for the required resourcescapability
- service capability type, or nullregUrl
- endpoint URL for a registry service implementing this protocol- Returns:
- registry query, or null for empty ID list
-
createKeywordQuery
public abstract RegistryQuery createKeywordQuery(String[] keywords, ResourceField[] rfs, boolean isOr, Capability capability, URL regUrl) Constructs a registry query that gets results for resources with a match for one or all of a given set of keywords found in a selection of resource fields.- Parameters:
keywords
- single-word keywords to match independentlyrfs
- resource fields against which keywords are to matchisOr
- if false all keywords must match, if true at least one keyword must matchcapability
- if non-null, restricts the resources to those with that capabilityregUrl
- endpoint URL for a registry service implementing this protocol- Returns:
- registry query
-
hasCapability
Indicates whether a given RegCapabilityInterface object is an instance of a given capability. This is typically used to weed out RegCapabilityInterface objects returned from a query that might have returned some items different than those queried.Really, the implementation of this ought not to be a function of the registry protocol in use. However, it's probably the case that the different registry implementations have different quirks in this respect, so take the opportunity to parameterise it by registry protocol in case that's required.
- Parameters:
stdCap
- standard capability definitionresCap
- capability interface object representing part of a registry resource- Returns:
- true iff
resCap
represents a capability of the typestdCap
-