Skip to content
Snippets Groups Projects
Commit fd7aa15e authored by Tobias Bruns's avatar Tobias Bruns
Browse files

OZG-7669 transfer fileid as string (not object)

parent 101a413e
No related branches found
No related tags found
1 merge request!1OZG-7669 filter processors if called by name
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
*/ */
package de.ozgcloud.processor.vorgang; package de.ozgcloud.processor.vorgang;
import com.fasterxml.jackson.annotation.JsonProperty;
import de.ozgcloud.common.binaryfile.FileId; import de.ozgcloud.common.binaryfile.FileId;
import lombok.Builder; import lombok.Builder;
import lombok.Getter; import lombok.Getter;
...@@ -36,4 +38,9 @@ public class FileMetaData { ...@@ -36,4 +38,9 @@ public class FileMetaData {
private String name; private String name;
private String contentType; private String contentType;
private long size; private long size;
@JsonProperty("id")
String getId() {
return id.toString();
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment