We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230c731 commit 7be456bCopy full SHA for 7be456b
src/org/openlowcode/server/data/LargeBinaryDataObjectField.java
@@ -12,6 +12,7 @@
12
13
import org.openlowcode.tools.messages.SFile;
14
import org.openlowcode.server.data.storage.StoredField;
15
+import org.openlowcode.tools.structure.LargeBinaryDataElt;
16
import org.openlowcode.tools.structure.SimpleDataElt;
17
18
/**
@@ -68,7 +69,7 @@ public void setValue(SFile field) {
68
69
70
@Override
71
public SimpleDataElt getDataElement() {
- throw new RuntimeException("Not yet implemented");
72
+ return new LargeBinaryDataElt(this.getName(),this.largebinaryfield.getPayload());
73
}
74
75
0 commit comments