jboss-deployment-structure-1_0.xsd 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ JBoss, Home of Professional Open Source.
  4. ~ Copyright 2011, Red Hat, Inc., and individual contributors
  5. ~ as indicated by the @author tags. See the copyright.txt file in the
  6. ~ distribution for a full listing of individual contributors.
  7. ~
  8. ~ This is free software; you can redistribute it and/or modify it
  9. ~ under the terms of the GNU Lesser General Public License as
  10. ~ published by the Free Software Foundation; either version 2.1 of
  11. ~ the License, or (at your option) any later version.
  12. ~
  13. ~ This software is distributed in the hope that it will be useful,
  14. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. ~ Lesser General Public License for more details.
  17. ~
  18. ~ You should have received a copy of the GNU Lesser General Public
  19. ~ License along with this software; if not, write to the Free
  20. ~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. ~ 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  22. -->
  23. <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  24. targetNamespace="urn:jboss:deployment-structure:1.0"
  25. xmlns="urn:jboss:deployment-structure:1.0"
  26. elementFormDefault="unqualified"
  27. attributeFormDefault="unqualified"
  28. version="1.0">
  29. <!-- Root element -->
  30. <xsd:element name="jboss-deployment-structure" type="jbossStructureType">
  31. <xsd:annotation>
  32. <xsd:documentation>
  33. Root element for a a jboss-structure file.
  34. </xsd:documentation>
  35. </xsd:annotation>
  36. </xsd:element>
  37. <xsd:complexType name="jbossStructureType">
  38. <xsd:annotation>
  39. <xsd:documentation>
  40. The jboss structure declaration type; contains deployments and additional modules.
  41. </xsd:documentation>
  42. </xsd:annotation>
  43. <xsd:sequence>
  44. <xsd:element name="ear-subdeployments-isolated" type="xsd:boolean" minOccurs="0" maxOccurs="1" >
  45. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  46. <documentation>
  47. Flag indicating whether each of the subdeployments within a .ear can access classes belonging to
  48. another subdeployment within the same .ear. Setting this to false, allows the subdeployments to
  49. see classes belonging to other subdeployments within the .ear.
  50. For example:
  51. myapp.ear
  52. |
  53. |--- web.war
  54. |
  55. |--- ejb1.jar
  56. |
  57. |--- ejb2.jar
  58. If the ear-subdeployments-isolated is set to false, then the classes in web.war can access classes
  59. belonging to ejb1.jar and ejb2.jar. Similarly, classes from ejb1.jar can access classes from ejb2.jar
  60. (and vice-versa).
  61. *Note that this flag, has no effect on the isolated classloader of the .war file(s). i.e. irrespective
  62. of whether this flag is set to true or false, the .war within a .ear will have a isolated classloader
  63. and other subdeployments within that .ear will not be able to access classes from that .war. This is
  64. as per spec*
  65. </documentation>
  66. </annotation>
  67. </xsd:element>
  68. <xsd:element name="deployment" type="deploymentType" minOccurs="0" maxOccurs="1" >
  69. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  70. <documentation>
  71. Element that corresponds to a deployment. This is used to customise
  72. class loading for a deployment or a sub deployment.
  73. </documentation>
  74. </annotation>
  75. </xsd:element>
  76. <xsd:element name="sub-deployment" type="deploymentType" minOccurs="0" maxOccurs="unbounded" >
  77. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  78. <documentation>
  79. Element that corresponds to a deployment. This is used to customise
  80. class loading for a deployment or a sub deployment.
  81. </documentation>
  82. </annotation>
  83. </xsd:element>
  84. <xsd:element name="module" type="moduleType" minOccurs="0" maxOccurs="unbounded" >
  85. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  86. <documentation>
  87. Additional module declaration. This can be used to create additional modules
  88. from resource roots inside or outside the deployment.
  89. </documentation>
  90. </annotation>
  91. </xsd:element>
  92. </xsd:sequence>
  93. </xsd:complexType>
  94. <xsd:complexType name="deploymentType">
  95. <xsd:annotation>
  96. <xsd:documentation>
  97. The declaration type; contains additional dependencies and resources.
  98. </xsd:documentation>
  99. </xsd:annotation>
  100. <xsd:all>
  101. <xsd:element name="exports" type="filterType" minOccurs="0">
  102. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  103. <documentation>
  104. Lists filter expressions to apply to the export filter of the local resources of this module
  105. (optional). By default, everything is exported. If filter expressions are provided, the default
  106. action is to accept all paths if no filters match.
  107. </documentation>
  108. </annotation>
  109. </xsd:element>
  110. <xsd:element name="dependencies" type="dependenciesType" minOccurs="0">
  111. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  112. <documentation>
  113. Lists the dependencies of this module (optional).
  114. </documentation>
  115. </annotation>
  116. </xsd:element>
  117. <xsd:element name="exclusions" type="exclusionsType" minOccurs="0">
  118. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  119. <documentation>
  120. Lists the excluded module dependencies.
  121. </documentation>
  122. </annotation>
  123. </xsd:element>
  124. <xsd:element name="resources" type="resourcesType" minOccurs="0">
  125. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  126. <documentation>
  127. Lists the resource roots of this module (optional).
  128. </documentation>
  129. </annotation>
  130. </xsd:element>
  131. <xsd:element name="transformers" type="transformerSetType" minOccurs="0">
  132. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  133. <documentation>
  134. Lists the class file transformers that should be applied for classes loaded by this module.
  135. </documentation>
  136. </annotation>
  137. </xsd:element>
  138. </xsd:all>
  139. </xsd:complexType>
  140. <xsd:complexType name="subDeploymentType">
  141. <xsd:complexContent>
  142. <xsd:extension base="deploymentType">
  143. <xsd:attribute name="name" type="xsd:string" use="required">
  144. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  145. <documentation>
  146. The deployment name.
  147. </documentation>
  148. </annotation>
  149. </xsd:attribute>
  150. </xsd:extension>
  151. </xsd:complexContent>
  152. </xsd:complexType>
  153. <xsd:complexType name="moduleType">
  154. <xsd:annotation>
  155. <xsd:documentation>
  156. The module declaration type; contains dependencies and resources.
  157. </xsd:documentation>
  158. </xsd:annotation>
  159. <xsd:all>
  160. <xsd:element name="exports" type="filterType" minOccurs="0">
  161. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  162. <documentation>
  163. Lists filter expressions to apply to the export filter of the local resources of this module
  164. (optional). By default, everything is exported. If filter expressions are provided, the default
  165. action is to accept all paths if no filters match.
  166. </documentation>
  167. </annotation>
  168. </xsd:element>
  169. <xsd:element name="dependencies" type="dependenciesType" minOccurs="0">
  170. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  171. <documentation>
  172. Lists the dependencies of this module (optional).
  173. </documentation>
  174. </annotation>
  175. </xsd:element>
  176. <xsd:element name="resources" type="resourcesType" minOccurs="0">
  177. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  178. <documentation>
  179. Lists the resource roots of this module (optional).
  180. </documentation>
  181. </annotation>
  182. </xsd:element>
  183. </xsd:all>
  184. <xsd:attribute name="name" type="moduleNameType" use="required">
  185. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  186. <documentation>
  187. The name of this module (required).
  188. </documentation>
  189. </annotation>
  190. </xsd:attribute>
  191. <xsd:attribute name="slot" type="moduleSlotType" use="optional">
  192. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  193. <documentation>
  194. The version slot of this module (optional).
  195. </documentation>
  196. </annotation>
  197. </xsd:attribute>
  198. </xsd:complexType>
  199. <xsd:simpleType name="moduleNameType">
  200. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  201. <documentation>
  202. A module name, which consists of one or more dot (.)-separated segments. Each segment must begin and end
  203. with an alphanumeric or underscore (_), and may otherwise contain alphanumerics, underscores, and hyphens
  204. (-).
  205. </documentation>
  206. </annotation>
  207. <xsd:restriction base="xsd:string">
  208. <xsd:pattern value="[a-zA-Z0-9_]([-a-zA-Z0-9_]*[a-zA-Z0-9_])?(\.[a-zA-Z0-9_]([-a-zA-Z0-9_]*[a-zA-Z0-9_])?)*"/>
  209. </xsd:restriction>
  210. </xsd:simpleType>
  211. <xsd:simpleType name="moduleSlotType">
  212. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  213. <documentation>
  214. A module version slot. A slot may consist of one or more alphanumerics, hyphens (-), underscores (_),
  215. plus signs (+), asterisks (*), or dots (.).
  216. </documentation>
  217. </annotation>
  218. <xsd:restriction base="xsd:string">
  219. <xsd:pattern value="[-a-zA-Z0-9_+*.]+"/>
  220. </xsd:restriction>
  221. </xsd:simpleType>
  222. <xsd:complexType name="dependenciesType">
  223. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  224. <documentation>
  225. A list of zero or more module dependencies.
  226. </documentation>
  227. </annotation>
  228. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  229. <xsd:element name="module" type="moduleDependencyType">
  230. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  231. <documentation>
  232. A specified module dependency.
  233. </documentation>
  234. </annotation>
  235. </xsd:element>
  236. </xsd:choice>
  237. </xsd:complexType>
  238. <xsd:complexType name="moduleDependencyType">
  239. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  240. <documentation>
  241. A single module dependency expression.
  242. </documentation>
  243. </annotation>
  244. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  245. <xsd:element name="exports" type="filterType">
  246. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  247. <documentation>
  248. A filter used to restrict what packages or directories from this dependency are re-exported by
  249. this module. See also the "export" and "services" attributes. The default action of this filter
  250. list is controlled by the value of the "export" attribute. Regardless of the setting of these
  251. attributes, this filter always behaves as if it has a final entry which rejects META-INF and
  252. all of its subdirectories.
  253. </documentation>
  254. </annotation>
  255. </xsd:element>
  256. <xsd:element name="imports" type="filterType">
  257. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  258. <documentation>
  259. A filter used to restrict what packages or directories from this dependency are visible to this
  260. module. See also the "services" attribute. The default action of this filter list is to reject
  261. a path if not matched.
  262. </documentation>
  263. </annotation>
  264. </xsd:element>
  265. </xsd:choice>
  266. <xsd:attribute name="name" type="moduleNameType" use="required">
  267. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  268. <documentation>
  269. The dependency module name (required).
  270. </documentation>
  271. </annotation>
  272. </xsd:attribute>
  273. <xsd:attribute name="slot" type="moduleSlotType" use="optional">
  274. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  275. <documentation>
  276. The dependency module version slot (optional).
  277. </documentation>
  278. </annotation>
  279. </xsd:attribute>
  280. <xsd:attribute name="export" type="xsd:boolean" use="optional" default="false">
  281. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  282. <documentation>
  283. Specifies whether this module dependency is re-exported by default (default is "false"). Setting
  284. this attribute to true sets the default action for the export filter list to "accept"; leaving it
  285. as false sets the default action to "reject". Thus you can still export dependency resources even
  286. if this attribute is false by listing explicit paths for the export list.
  287. </documentation>
  288. </annotation>
  289. </xsd:attribute>
  290. <xsd:attribute name="services" type="serviceDispositionType" use="optional" default="none">
  291. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  292. <documentation>
  293. Specifies whether and how services found in this dependency are used (default is "none"). Specifying
  294. a value of "import" for this attribute is equivalent to adding a filter at the end of the import
  295. filter list which includes the META-INF/services path from the dependency module. Setting a value
  296. of "export" for this attribute is equivalent to the same action on the export filter list.
  297. </documentation>
  298. </annotation>
  299. </xsd:attribute>
  300. <xsd:attribute name="optional" type="xsd:boolean" use="optional" default="false">
  301. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  302. <documentation>
  303. Specifies whether this dependency is optional (defaults to false). An optional dependency will not
  304. cause the module to fail to load if not found; however if the module is added later, it will not be
  305. retroactively linked into this module's dependency list.
  306. </documentation>
  307. </annotation>
  308. </xsd:attribute>
  309. </xsd:complexType>
  310. <xsd:complexType name="exclusionsType">
  311. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  312. <documentation>
  313. A list of zero or more excluded module dependencies.
  314. </documentation>
  315. </annotation>
  316. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  317. <xsd:element name="module" type="moduleExclusionType">
  318. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  319. <documentation>
  320. A specified module exclusion.
  321. </documentation>
  322. </annotation>
  323. </xsd:element>
  324. </xsd:choice>
  325. </xsd:complexType>
  326. <xsd:complexType name="moduleExclusionType">
  327. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  328. <documentation>
  329. A single module dependency exclusion.
  330. </documentation>
  331. </annotation>
  332. <xsd:attribute name="name" type="moduleNameType" use="required">
  333. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  334. <documentation>
  335. The excluded module name (required).
  336. </documentation>
  337. </annotation>
  338. </xsd:attribute>
  339. <xsd:attribute name="slot" type="moduleSlotType" use="optional">
  340. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  341. <documentation>
  342. The excluded module version slot (optional).
  343. </documentation>
  344. </annotation>
  345. </xsd:attribute>
  346. </xsd:complexType>
  347. <xsd:simpleType name="serviceDispositionType">
  348. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  349. <documentation>
  350. The requested behavior for service handling on a dependency.
  351. </documentation>
  352. </annotation>
  353. <xsd:restriction base="xsd:token">
  354. <xsd:enumeration value="none">
  355. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  356. <documentation>
  357. Do not import or export services from this dependency.
  358. </documentation>
  359. </annotation>
  360. </xsd:enumeration>
  361. <xsd:enumeration value="import">
  362. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  363. <documentation>
  364. Import, but do not re-export, services from this dependency.
  365. </documentation>
  366. </annotation>
  367. </xsd:enumeration>
  368. <xsd:enumeration value="export">
  369. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  370. <documentation>
  371. Import and re-export services found in this dependency.
  372. </documentation>
  373. </annotation>
  374. </xsd:enumeration>
  375. </xsd:restriction>
  376. </xsd:simpleType>
  377. <xsd:complexType name="classNameType">
  378. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  379. <documentation>
  380. A class name.
  381. </documentation>
  382. </annotation>
  383. <xsd:attribute name="name" type="xsd:string" use="required">
  384. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  385. <documentation>
  386. The class name.
  387. </documentation>
  388. </annotation>
  389. </xsd:attribute>
  390. </xsd:complexType>
  391. <xsd:complexType name="pathType">
  392. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  393. <documentation>
  394. A filesystem path name.
  395. </documentation>
  396. </annotation>
  397. <xsd:attribute name="name" type="xsd:string" use="required">
  398. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  399. <documentation>
  400. The path name.
  401. </documentation>
  402. </annotation>
  403. </xsd:attribute>
  404. </xsd:complexType>
  405. <xsd:complexType name="resourcesType">
  406. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  407. <documentation>
  408. A list of zero or more resource roots for this deployment.
  409. </documentation>
  410. </annotation>
  411. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  412. <xsd:element name="resource-root" type="resourceType">
  413. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  414. <documentation>
  415. A resource root within this deployment.
  416. </documentation>
  417. </annotation>
  418. </xsd:element>
  419. </xsd:choice>
  420. </xsd:complexType>
  421. <xsd:complexType name="resourceType">
  422. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  423. <documentation>
  424. A resource root within a deployment.
  425. </documentation>
  426. </annotation>
  427. <xsd:all>
  428. <xsd:element name="filter" type="filterType">
  429. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  430. <documentation>
  431. A path filter specification for this resource root (optional). By default all paths are accepted.
  432. </documentation>
  433. </annotation>
  434. </xsd:element>
  435. </xsd:all>
  436. <xsd:attribute name="name" type="xsd:string" use="optional">
  437. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  438. <documentation>
  439. The name of this resource root (optional). If not specified, defaults to the value of the path
  440. attribute.
  441. </documentation>
  442. </annotation>
  443. </xsd:attribute>
  444. <xsd:attribute name="path" type="xsd:string" use="required">
  445. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  446. <documentation>
  447. The path of this resource root, relative to the path in which the module.xml file is found.
  448. </documentation>
  449. </annotation>
  450. </xsd:attribute>
  451. </xsd:complexType>
  452. <xsd:complexType name="filterType">
  453. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  454. <documentation>
  455. A filter specification, consisting of zero or more filter items.
  456. </documentation>
  457. </annotation>
  458. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  459. <xsd:element name="include" type="pathSpecType" minOccurs="0">
  460. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  461. <documentation>
  462. A path to include. The path value can be a path name or a "glob" which may include the special
  463. wildcards "*", "**", and "?".
  464. </documentation>
  465. </annotation>
  466. </xsd:element>
  467. <xsd:element name="exclude" type="pathSpecType" minOccurs="0">
  468. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  469. <documentation>
  470. A path to exclude. The path value can be a path name or a "glob" which may include the special
  471. wildcards "*", "**", and "?".
  472. </documentation>
  473. </annotation>
  474. </xsd:element>
  475. <xsd:element name="include-set" type="pathSetType" minOccurs="0">
  476. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  477. <documentation>
  478. A set of literal path names to include. Wildcards are not supported.
  479. </documentation>
  480. </annotation>
  481. </xsd:element>
  482. <xsd:element name="exclude-set" type="pathSetType" minOccurs="0">
  483. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  484. <documentation>
  485. A set of literal path names to exclude. Wildcards are not supported.
  486. </documentation>
  487. </annotation>
  488. </xsd:element>
  489. </xsd:choice>
  490. </xsd:complexType>
  491. <xsd:complexType name="pathSpecType">
  492. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  493. <documentation>
  494. A path specification type, which may include wildcards.
  495. </documentation>
  496. </annotation>
  497. <xsd:attribute name="path" type="xsd:string" use="required">
  498. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  499. <documentation>
  500. The path name, which can be a literal path name or it may include the special wildcards "*", "**",
  501. and "?".
  502. </documentation>
  503. </annotation>
  504. </xsd:attribute>
  505. </xsd:complexType>
  506. <xsd:complexType name="pathSetType">
  507. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  508. <documentation>
  509. A set of literal path names which can be used for efficient matching against multiple possible values.
  510. </documentation>
  511. </annotation>
  512. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  513. <xsd:element name="path" type="pathType" minOccurs="0">
  514. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  515. <documentation>
  516. The path name to include in the set.
  517. </documentation>
  518. </annotation>
  519. </xsd:element>
  520. </xsd:choice>
  521. </xsd:complexType>
  522. <xsd:complexType name="transformerSetType">
  523. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  524. <documentation>
  525. A list of java.lang.instrument.ClassFileTransformer implementations that will be applied at classloading
  526. </documentation>
  527. </annotation>
  528. <xsd:choice minOccurs="0" maxOccurs="unbounded">
  529. <xsd:element name="transformer" type="transformerType">
  530. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  531. <documentation>
  532. The transformer class to include in the set.
  533. </documentation>
  534. </annotation>
  535. </xsd:element>
  536. </xsd:choice>
  537. </xsd:complexType>
  538. <xsd:complexType name="transformerType">
  539. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  540. <documentation>
  541. A java.lang.instrument.ClassFileTransformer that will be applied at classloading
  542. </documentation>
  543. </annotation>
  544. <xsd:attribute name="class" type="xsd:string" use="required">
  545. <annotation xmlns="http://www.w3.org/2001/XMLSchema">
  546. <documentation>
  547. The class name of the transformer
  548. </documentation>
  549. </annotation>
  550. </xsd:attribute>
  551. </xsd:complexType>
  552. </xsd:schema>