|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Class Summary | |
|---|---|
| ClassPath | The jbi:classpath complex type. |
| ComponentDesc | The <jbi:component> element. |
| Connection | The <jbi:connection> element. |
| Connections | The <jbi:connections> element. |
| Consumer | The <jbi:consumer> element. |
| Consumes | The <jbi:consumes> element. |
| Descriptor | The <jbi:jbi> element. |
| DescriptorFactory | Factory to read a JBI descriptor from a file, url or stream. |
| Identification | The <jbi:identification> element. |
| InstallationDescriptorExtension | A POJO used to hold the descriptor extension. |
| Provider | The <jbi:provider> element. |
| Provides | The <jbi:provides> element. |
| ServiceAssemblyDesc | The <jbi:service-assembly> element. |
| Services | The <jbi:services> element. |
| ServiceUnitDesc | The <jbi:service-unit> element. |
| SharedLibraryDesc | The <jbi:shared-library> element. |
| SharedLibraryList | The jbi:shared-library-list complex type. |
| Target | The <jbi:target> element. |
JBI descriptor POJOs based model. Relax NG Schema for JBI descriptor:
default namespace this = "http://java.sun.com/xml/ns/jbi"
start =
element jbi {
attribute version { xsd:decimal },
( component | shared-library | service-assembly | services)
}
component =
element component {
attribute type { "service-engine" | "binding-component" },
attribute component-class-loader-delegation { "parent-first" | "self-first" }?,
attribute bootstrap-class-loader-delegation { "parent-first" | "self-first" }?,
identification,
element component-class-name { attribute description { text }?, text },
element component-class-path { class-path },
element bootstrap-class-name { text },
element bootstrap-class-path { class-path },
shared-library-list*,
element* -this:* { text }*
}
shared-library =
element shared-library {
attribute class-loader-delegation { "parent-first" | "self-first" }?,
attribute version { text }?,
identification,
element shared-library-class-path { class-path }
}
shared-library-list =
element shared-library {
attribute version { text }?,
text
}
service-assembly =
element service-assembly {
identification,
service-unit*,
connections?,
element* -this:* { text }*
}
service-unit =
element service-unit {
identification,
element target {
element artifacts-zip { text },
element component-name { xsd:NCName }
},
element* -this:* { text }*
}
identification =
element identification {
element name { xsd:NCName },
element description { text },
element* -this:* { text }*
}
class-path =
(element path-element { text })+
services =
element services {
attribute binding-component { xsd:boolean },
provides*,
consumes*,
element* -this:* { text }*
}
connections =
element connections {
element connection {
element consumer {
( attribute interface-name { xsd:QName } |
(attribute service-name { xsd:QName }, attribute endpoint-name { text })
)
},
element provider {
attribute service-name { xsd:QName }, attribute endpoint-name { text }
}
}*,
element* -this:* { text }*
}
provides =
element provides {
attribute interface-name { xsd:QName },
attribute service-name {xsd:QName }, attribute endpoint-name { text },
element* -this:* { text }*
}
consumes =
element consumes {
attribute interface-name { xsd:QName },
( attribute service-name {xsd:QName }, attribute endpoint-name { text },
attribute link-type { "standard" | "hard" | "soft" }? )?,
element* -this:* { text }*
}
|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||