
org.ow2.bonita.pvm.internal.lob.BlobStrategyFile Maven / Gradle / Ivy
package org.ow2.bonita.pvm.internal.lob;
/** TODO */
public class BlobStrategyFile implements BlobStrategy {
public void set(byte[] bytes, Blob blob) {
// create file
String fileName = null;
// store bytes in file
// store fileName in blob
blob.setFileName(fileName);
}
public byte[] get(Blob blob) {
// read file from blob.getFileName();
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy