You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
436 B

package org.pEp.jniadapter;
public class Blob {
public byte[] data;
public String mime_type;
public String filename;
Blob() {
mime_type = "application/octet-stream";
}
Blob(_Blob b) {
data = b.data;
if (b.mime_type != null)
mime_type = AbstractEngine.toUTF16(b.mime_type);
if (b.filename != null)
filename = AbstractEngine.toUTF16(b.filename);
}
}