@prefix oslc: . @prefix rdf: . @prefix dcterms: . @prefix oslc-automation: . @base . # The service provider at a point in time when the implementation # supports Automation 2.0 a oslc:ServiceProvider ; oslc:service [ oslc:domain oslc-automation: ; oslc:creationDialog [ a oslc:Dialog ; dcterms:title "Automation 2.0"; oslc:dialog ; ]; ]; . # The service provider at a point in time when the implementation # supports Automation 2.1. # The 2.0 dialog has usage values added; this change is optional. # - ImmediateExecution renders explicit its 2.0 behavior. # - default provides a hint to clients (especially 2.0 clients that # expect 2.0 behavior) to prefer that dialog # A 2.1 deferred execution dialog is appended. a oslc:ServiceProvider ; oslc:service [ oslc:domain oslc-automation: ; oslc:creationDialog [ a oslc:Dialog ; dcterms:title "Automation 2.0 aka Automation 2.1 immediate execution dialog"; oslc:dialog ; oslc:usage oslc-automation:ImmediateExecution , oslc:default ; ]; oslc:creationDialog [ # Deferred execution dialog a oslc:Dialog ; dcterms:title "Automation 2.1 deferred execution dialog"; oslc:dialog ; oslc:usage oslc-automation:DeferredExecution ; ]; ];