Moved constructor to the top.
This commit is contained in:
parent
bcd5f0600d
commit
fea54e2fa0
|
|
@ -22,14 +22,14 @@ public class ApplicationPage {
|
||||||
|
|
||||||
Integer order;
|
Integer order;
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public boolean isDefault() {
|
|
||||||
return Boolean.TRUE.equals(isDefault);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ApplicationPage(String id, boolean isDefault){
|
public ApplicationPage(String id, boolean isDefault){
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.isDefault = isDefault;
|
this.isDefault = isDefault;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@JsonIgnore
|
||||||
|
public boolean isDefault() {
|
||||||
|
return Boolean.TRUE.equals(isDefault);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user