Package org.jgroups.annotations
Annotation Type XmlInclude
-
@Retention(RUNTIME) @Target(TYPE) public @interface XmlInclude
Used to include other schemas byXMLSchemaGenerator
. Example:@XmlInclude(schema="relay-4.2.xsd",type=Type.IMPORT,namespace="urn:jgroups:relay:4.2",alias="relay")
results in the following include in the schema element:<xs:schema... xmlns:relay="urn:jgroups:relay:1.0" /> ... <xs:import schemaLocation="fork-stacks-4.2.xsd" namespace="urn:jgroups:relay:4.2" />
- Since:
- 3.5
- Author:
- Bela Ban
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.String
alias
java.lang.String
namespace
java.lang.String[]
schema
XmlInclude.Type
type
-
-
-
Element Detail
-
type
XmlInclude.Type type
- Default:
- org.jgroups.annotations.XmlInclude.Type.INCLUDE
-
-