@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix s4dmgt: <https://saref.etsi.org/saref4dmgt/> .
@prefix s4syst: <https://saref.etsi.org/saref4syst/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

s4dmgt:enablesManagementService rdfs:domain s4dmgt:ManagementConnection .

s4dmgt:hasConnection rdfs:range s4dmgt:ManagementConnection .

<https://saref.etsi.org/saref4dmgt/v1.1.1/example/base-pattern#> dcterms:references s4dmgt:ManagementConnection .

<https://saref.etsi.org/saref4dmgt/v1.1.1/> dcterms:references s4dmgt:ManagementConnection ;
    dcterms:subject s4dmgt:ManagementConnection .

s4dmgt:ManagementConnection a owl:Class ;
    rdfs:label "Management Connection"@en ;
    dcterms:isReferencedBy <https://saref.etsi.org/saref4dmgt/v1.1.1/>,
        <https://saref.etsi.org/saref4dmgt/v1.1.1/example/base-pattern#> ;
    rdfs:comment """Abstract representation of the connection between a Client and a Server. It does not necessarily imply that a persistent connection is established between the entities - such as a TCP connection. It represents the link and the capability of the Server to interact with the Client.

For instance, the Client has been authenticated by the Server with a certificate, and/or the client has received a configuration for access rights to its functions for the Server."""@en ;
    rdfs:isDefinedBy <https://saref.etsi.org/saref4dmgt/v1.1.1/> ;
    rdfs:seeAlso <https://saref.etsi.org/saref4dmgt/v1.1.1/> ;
    rdfs:subClassOf [ a owl:Class ;
            owl:intersectionOf ( s4syst:Connection [ a owl:Restriction ;
                        owl:onProperty s4syst:connectsSystem ;
                        owl:someValuesFrom s4dmgt:Client ] [ a owl:Restriction ;
                        owl:onProperty s4syst:connectsSystem ;
                        owl:someValuesFrom s4dmgt:Server ] ) ] ;
    skos:hiddenLabel "ManagementConnection" .

