Fixed Jackson serialisation for INode and IRoom

This commit is contained in:
Andrey Terentev 2024-03-13 13:54:27 +07:00 committed by Andrey Terentev
parent d1e97bf3b2
commit 67a06b0116
3 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@ public interface INode {
@NotNull PickingMethod getPickingMethod();
@Transient
@Nullable Boolean isPersist();
@Nullable String getDetail(@NotNull NodeDetails detail);

View File

@ -40,7 +40,6 @@ public class ResponseNode implements INode {
return method;
}
@Transient
@Override
public @Nullable Boolean isPersist() {
var val = getDetail(NodeDetails.PERSIST);

View File

@ -38,6 +38,7 @@ public interface IRoom {
boolean isLocked();
@Transient
@Nullable Boolean isPersist();
@Nullable String getPayload();