Skip to content

Commit

Permalink
add xonyxia to model
Browse files Browse the repository at this point in the history
  • Loading branch information
fcomte committed Jul 10, 2022
1 parent db64942 commit 34b071a
Showing 1 changed file with 43 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ public class Property {
@JsonProperty("x-generated")
private XGenerated xGenerated;

@JsonProperty("x-onyxia")
private XOnyxia xonyxia;

public XForm getXform() {
return xform;
}
Expand All @@ -49,6 +52,14 @@ public void setXform(XForm xform) {
this.xform = xform;
}

public XOnyxia getXonyxia() {
return xonyxia;
}

public void setXonyxia(XOnyxia xonyxia) {
this.xonyxia = xonyxia;
}

public XSecurity getXsecurity() {
return xsecurity;
}
Expand Down Expand Up @@ -293,6 +304,38 @@ public void setValue(String value) {
}
}

@JsonIgnoreProperties(ignoreUnknown = true)
public static class XOnyxia {

boolean hidden = false;
boolean readonly = false;
String overwriteDefaultWith;

public boolean isHidden() {
return hidden;
}

public void setHidden(boolean hidden) {
this.hidden = hidden;
}

public boolean isReadonly() {
return readonly;
}

public void setReadonly(boolean readonly) {
this.readonly = readonly;
}

public String getOverwriteDefaultWith() {
return overwriteDefaultWith;
}

public void setOverwriteDefaultWith(String overwriteDefaultWith) {
this.overwriteDefaultWith = overwriteDefaultWith;
}
}

@JsonIgnoreProperties(ignoreUnknown = true)
public static class XGenerated {

Expand Down

0 comments on commit 34b071a

Please sign in to comment.