Skip to content

Commit

Permalink
Add @XmlTransient for YAML-specific field in Definitions
Browse files Browse the repository at this point in the history
Signed-off-by: Vladimir Yussupov <v.yussupov@gmail.com>
  • Loading branch information
v-yussupov committed May 18, 2020
1 parent 423b0a0 commit 6626a54
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -19,13 +19,15 @@
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlTransient;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "Definitions")
public class Definitions extends TDefinitions {
@XmlTransient
protected Map<String, QName> importDefinitions = new HashMap<>();

public Definitions() {
Expand Down

0 comments on commit 6626a54

Please sign in to comment.