90 likes | 284 Views
TOSCA 115 Capability Interfaces. Kevin Wilson, Travis Tripp, Kishore Jagannath Nov4, 2013. TOSCA 115 – Issue Description.
E N D
TOSCA 115 Capability Interfaces Kevin Wilson, Travis Tripp, Kishore Jagannath Nov4, 2013
TOSCA 115 – Issue Description Requirements and capabilities should provide specific interface definitions. So that the designer of a app can depend on a contract set of public properties that are to be provided and a contracted set method/interfaces that are provided by the requirement. For example: If I have a dependency on a DB Server, and need to run SQL on that server, at design time, I would like to know the methods supported by the DBServer requirement so that I can leverage that in my component scripting. On the implementation side providing the component, the script/method to execute the script may be different for each DBServer type. IE commands to run SQL on MySQL are not the same commands that would be used for Oracle. However, the SQL may the same in some cases. Similar methods/use cases exist for J2EE server deploy methods etc. By providing a interface on the Requirement/Capability we can leverage the workflows specific to the capability in a generic way. And the designer would be able to identify the contracted calls that are made available.
Highlights of Proposal Capability Types should have the ability to expose interfaces with one to many operations in addition to property definition. Node Type possessing the capability will now inherit the interface operations defined in the capability. Node Type having multiple capabilities will now inherit the interface operations declared in each of the capability NodeTypeImplementation will provide implementation for all the interface operations that the Node Type inherits from the capabilities + any interface operations that are define within Node Type. TBD- Do we still need to have interface operations within Node Types.
User Profiles • Capability • Type • properties • interfaces Node Type • Node Type Implementation • Implementation artifacts • Deployment artifacts
Reusable Interface Methods Node Type <Oracle10g> • Capability • Type • <OracleDBContainer> • properties • interfaces Node Type <Oracle11g>
Design Experience • Capability Type • <ApacheWebServerCapability> • properties • interfaces Node Type <ApacheWebServer> Relationship Type <hosted on> • Requirement Type • <ApacheWebServeRequirement> • properties • interfaces Node Type <SugarCrmApp>
Reuse via Composition • ApacheWebServer • <<CapabilityType>> • properties • operations Software <<Node Type>> • MySql Database • <<CapabilityType>> • properties • operations ApacheWebServer <<Node Type>> • ApacheWebServer • <<CapabilityType>> • properties • operations MySql DB <<Node Type>> • MySql Database • <<CapabilityType>> • properties • operations
Tosca Schema • <xs:complexType name="tCapabilityType"> • <xs:complexContent> • <xs:extension base="tEntityType"/> • </xs:complexContent> • <xs:element name="Interfaces" minOccurs="0"> • <xs:complexType> • <xs:sequence> • <xs:element name="Interface" type="tInterface" • maxOccurs="unbounded"/> • </xs:sequence> • </xs:complexType> • </xs:element></xs:complexType>
<CapabilityType name="xs:NCName" targetNamespace="xs:anyURI"? abstract="yes|no"? final="yes|no"?> <DerivedFromtypeRef="xs:QName"/> ? <PropertiesDefinition element="xs:QName"? type="xs:QName"?/> ? <Interfaces> <Interface name="xs:NCName | xs:anyURI"> <Operation name="xs:NCName"> <InputParameters> <InputParameter name="xs:string" type="xs:string" required="yes|no"?/> + </InputParameters> ? <OutputParameters> <OutputParameter name="xs:string" type="xs:string" required="yes|no"?/> + </OutputParameters> ? </Operation> + </Interface> + </Interfaces> ?