[go: nahoru, domu]

Skip to content

Commit

Permalink
make XACML policy sets serializable
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Rud authored and Dmytro Rud committed May 5, 2024
1 parent dd8ebc1 commit c3bdb14
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;

import java.io.Serial;
import java.io.Serializable;


/**
* <p>Java class for CV complex type.
Expand Down Expand Up @@ -49,7 +52,9 @@
@XmlType(name = "CV", propOrder = {
"originalText"
})
public class CV {
public class CV implements Serializable {
@Serial
private static final long serialVersionUID = 4293231794649378796L;

protected String originalText;
@XmlAttribute(name = "code", required = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;

import java.io.Serial;
import java.io.Serializable;


/**
* <p>Java class for II complex type.
Expand All @@ -41,7 +44,9 @@
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "II")
public class II {
public class II implements Serializable {
@Serial
private static final long serialVersionUID = -976919222195628069L;

@XmlAttribute(name = "root", required = true)
protected String root;
Expand Down

0 comments on commit c3bdb14

Please sign in to comment.