Skip to content

Commit

Permalink
Merge pull request #828 from dalbani/fix-xsd
Browse files Browse the repository at this point in the history
[JGRP-2823] Fix XML Schema generation
  • Loading branch information
belaban authored Aug 20, 2024
2 parents 36fd15e + c68514c commit 48e4f50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/FORK.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* @since 3.4
*/
@XmlInclude(schema="fork-stacks.xsd",type=XmlInclude.Type.EMBED,namespace="fork",alias="fork")
@XmlElement(name="fork-stacks",type="fork:ForkStacksType")
@XmlElement(name="fork-stacks",type="tns:ForkStacksType")
@MBean(description="Implementation of FORK protocol")
public class FORK extends Protocol {
public static short ID=ClassConfigurator.getProtocolId(FORK.class);
Expand Down
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/relay/RELAY.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @since 5.2.17
*/
@XmlInclude(schema="relay.xsd",type=XmlInclude.Type.EMBED,namespace="urn:jgroups:relay:1.0",alias="relay")
@XmlElement(name="RelayConfiguration",type="relay:RelayConfigurationType")
@XmlElement(name="RelayConfiguration",type="tns:RelayConfigurationType")
public abstract class RELAY extends Protocol {
// reserved flags
public static final short can_become_site_master_flag = 1 << 1;
Expand Down

0 comments on commit 48e4f50

Please sign in to comment.