Class DefaultGraphQL2RDFConfiguration
java.lang.Object
se.liu.ida.hefquin.engine.wrappers.graphql.impl.DefaultGraphQL2RDFConfiguration
- All Implemented Interfaces:
GraphQL2RDFConfiguration
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
isValidClassURI
(String uri) Verifies that @param uri is valid (Has correct class prefix)boolean
Verifies that @param uri is valid (Has correct membership uri)boolean
isValidPropertyURI
(String uri) Verifies that @param uri is valid (Has correct property prefix, and connecting text)mapClassToType
(String uri) Maps an rdfs class uri to a GraphQL type Return null if URI is invalid (not a class URI)mapFieldToProperty
(String type, String field) Maps a GraphQL object type and field to an rdf property URImapPropertyToField
(String uri) Maps an rdf property URI to a GraphQL field Return null if URI is invalid (not a property URI)mapPropertyToType
(String uri) Maps an rdf property URI to a GraphQL type Return null if URI is invalid (not a property URI)mapTypeToClass
(String type) Maps a GraphQL type to an rdfs class uriFunction to remove the prefix from the property URI: @param uri Otherwise return null if unable (invalid property URI)Function to remove the suffix (connecting text and class name) from the property URI: @param uri.
-
Field Details
-
classPrefix
-
propertyPrefix
-
connectingText
- See Also:
-
membershipURI
-
jsonIDKeyPrefix
- See Also:
-
jsonObjectKeyPrefix
- See Also:
-
jsonScalarKeyPrefix
- See Also:
-
-
Constructor Details
-
DefaultGraphQL2RDFConfiguration
public DefaultGraphQL2RDFConfiguration() -
DefaultGraphQL2RDFConfiguration
-
-
Method Details
-
getPropertyPrefix
- Specified by:
getPropertyPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the prefix used for property URIs. A property URI is defined by its prefix followed by a property name, a connecting text and finally a class name of which that property belongs to. Example: "http://example.org/p/book_of_Author"
-
getClassPrefix
- Specified by:
getClassPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the prefix used for class URIs. A class URI is defined by its prefix followed by a class name. Example: "http://example.org/c/Author"
-
getConnectingText
- Specified by:
getConnectingText
in interfaceGraphQL2RDFConfiguration
- Returns:
- the text that connects the property name and the class name in a property URI. Example: _of_
-
getClassMembershipURI
- Specified by:
getClassMembershipURI
in interfaceGraphQL2RDFConfiguration
- Returns:
- a URI that signify a membership relation. Example: https://www.w3.org/1999/02/22-rdf-syntax-ns#type
-
removePropertyPrefix
Description copied from interface:GraphQL2RDFConfiguration
Function to remove the prefix from the property URI: @param uri Otherwise return null if unable (invalid property URI)- Specified by:
removePropertyPrefix
in interfaceGraphQL2RDFConfiguration
-
removePropertySuffix
Description copied from interface:GraphQL2RDFConfiguration
Function to remove the suffix (connecting text and class name) from the property URI: @param uri. Otherwise return null if unable (invalid property URI)- Specified by:
removePropertySuffix
in interfaceGraphQL2RDFConfiguration
-
isValidClassURI
Description copied from interface:GraphQL2RDFConfiguration
Verifies that @param uri is valid (Has correct class prefix)- Specified by:
isValidClassURI
in interfaceGraphQL2RDFConfiguration
-
isValidPropertyURI
Description copied from interface:GraphQL2RDFConfiguration
Verifies that @param uri is valid (Has correct property prefix, and connecting text)- Specified by:
isValidPropertyURI
in interfaceGraphQL2RDFConfiguration
-
isValidMembershipURI
Description copied from interface:GraphQL2RDFConfiguration
Verifies that @param uri is valid (Has correct membership uri)- Specified by:
isValidMembershipURI
in interfaceGraphQL2RDFConfiguration
-
mapClassToType
Description copied from interface:GraphQL2RDFConfiguration
Maps an rdfs class uri to a GraphQL type Return null if URI is invalid (not a class URI)- Specified by:
mapClassToType
in interfaceGraphQL2RDFConfiguration
-
mapTypeToClass
Description copied from interface:GraphQL2RDFConfiguration
Maps a GraphQL type to an rdfs class uri- Specified by:
mapTypeToClass
in interfaceGraphQL2RDFConfiguration
-
mapPropertyToField
Description copied from interface:GraphQL2RDFConfiguration
Maps an rdf property URI to a GraphQL field Return null if URI is invalid (not a property URI)- Specified by:
mapPropertyToField
in interfaceGraphQL2RDFConfiguration
-
mapPropertyToType
Description copied from interface:GraphQL2RDFConfiguration
Maps an rdf property URI to a GraphQL type Return null if URI is invalid (not a property URI)- Specified by:
mapPropertyToType
in interfaceGraphQL2RDFConfiguration
-
mapFieldToProperty
Description copied from interface:GraphQL2RDFConfiguration
Maps a GraphQL object type and field to an rdf property URI- Specified by:
mapFieldToProperty
in interfaceGraphQL2RDFConfiguration
-
getJsonIDKeyPrefix
- Specified by:
getJsonIDKeyPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the prefix used by the id key in the expected json.
-
getJsonObjectKeyPrefix
- Specified by:
getJsonObjectKeyPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the prefix used by object keys in the expected json.
-
getJsonScalarKeyPrefix
- Specified by:
getJsonScalarKeyPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the prefix used by scalar keys in the expected json.
-
removeJsonKeyPrefix
- Specified by:
removeJsonKeyPrefix
in interfaceGraphQL2RDFConfiguration
- Returns:
- the json key without its prefix. Works for keys with the defined prefixes from this current config (id,scalar,object)
-