1 <xsd:schema xmlns="http://opendaylight.org/xmlns/blueprint/v1.0.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
2 xmlns:bp="http://www.osgi.org/xmlns/blueprint/v1.0.0"
3 targetNamespace="http://opendaylight.org/xmlns/blueprint/v1.0.0" elementFormDefault="qualified"
4 attributeFormDefault="unqualified" version="1.0.0">
7 Copyright © 2016, 2018 Brocade Communications Systems, Inc. and others.
9 This program and the accompanying materials are made available under the
10 terms of the Eclipse Public License v1.0 which accompanies this distribution,
11 and is available at http://www.eclipse.org/legal/epl-v10.html
14 <xsd:import namespace="http://www.osgi.org/xmlns/blueprint/v1.0.0"/>
16 <xsd:attribute name="restart-dependents-on-updates" type="xsd:boolean"/>
17 <xsd:attribute name="use-default-for-reference-types" type="xsd:boolean"/>
18 <xsd:attribute name="type" type="xsd:string"/>
21 String representation of an instance identifier. Precise string format
22 is undefined just now.
24 <xsd:simpleType name="Tpath">
25 <xsd:restriction base="xsd:string"/>
29 A promise to instantiate actions of specified binding interface.
30 Specified interface must define at least one action. In case a bean
31 is specified, it will be used as the implementation of last resort
32 for actions not otherwise bound. If a bean is not specified, a blank
33 implementation will be substituted.
35 <xsd:complexType name="TactionProvider">
36 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
37 <xsd:attribute name="ref" type="bp:Tidref" use="optional"/>
39 <xsd:element name="action-provider" type="TactionProvider"/>
42 A reference to an action-provider providing specified interface.
43 Specified interface must define at least one action.
45 <xsd:complexType name="TactionService">
46 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
47 <xsd:attribute name="id" type="xsd:ID"/>
49 <xsd:element name="action-service" type="TactionService"/>
52 Implementation of an action at specific instance. This is used
53 to provide binding to actions on specific context, rather than
54 to a more general contract of action-provider.
55 <xsd:complexType name="TactionImplementation">
56 <xsd:attribute name="interface" type="bp:Tclass" use="optional"/>
57 <xsd:attribute name="ref" type="bp:Tidref" use="required"/>
58 <xsd:attribute name="path" type="Tpath" use="required"/>
59 <xsd:attribute name="id" type="xsd:ID"/>
61 <xsd:element name="action-implementation" type="TactionImplementation"/ -->
64 A reference to a specific action-implementation.
65 <xsd:complexType name="TactionInstance">
66 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
67 <xsd:attribute name="path" type="Tpath" use="required"/>
68 <xsd:attribute name="id" type="xsd:ID"/>
70 <xsd:element name="action-instance" type="TactionInstance"/ -->
72 <xsd:complexType name="TrpcImplementation">
73 <xsd:attribute name="interface" type="bp:Tclass" use="optional"/>
74 <xsd:attribute name="ref" type="bp:Tidref" use="required"/>
76 <xsd:element name="rpc-implementation" type="TrpcImplementation"/>
78 <xsd:complexType name="TrpcService">
79 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
80 <xsd:attribute name="id" type="xsd:ID"/>
82 <xsd:element name="rpc-service" type="TrpcService"/>
84 <xsd:complexType name="TnotificationListener">
85 <xsd:attribute name="ref" type="bp:Tidref" use="required"/>
87 <xsd:element name="notification-listener" type="TnotificationListener"/>
89 <xsd:complexType name="TclusteredAppConfig">
91 <xsd:element name="default-config" type="xsd:string" minOccurs="0" maxOccurs="1"/>
93 <xsd:attribute name="binding-class" type="bp:Tclass" use="required"/>
94 <xsd:attribute name="list-key-value" type="xsd:string" use="optional"/>
95 <xsd:attribute name="default-config-file-name" type="xsd:string" use="optional"/>
96 <xsd:attribute name="id" type="xsd:ID" use="required"/>
97 <xsd:attribute name="update-strategy" type="TupdateStrategy" use="optional" default="reload"/>
99 <xsd:element name="clustered-app-config" type="TclusteredAppConfig"/>
100 <xsd:simpleType name="TupdateStrategy">
101 <xsd:restriction base="xsd:NMTOKEN">
102 <xsd:enumeration value="none"/>
103 <xsd:enumeration value="reload"/>
106 <xsd:complexType name="TspecificReferenceList">
107 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
108 <xsd:attribute name="id" type="xsd:ID"/>
110 <xsd:element name="specific-reference-list" type="TspecificReferenceList"/>
112 <xsd:complexType name="TstaticReference">
113 <xsd:attribute name="interface" type="bp:Tclass" use="required"/>
114 <xsd:attribute name="id" type="xsd:ID"/>
116 <xsd:element name="static-reference" type="TstaticReference"/>