com.ironcorelabs.sdk.DocumentDecryptResult Maven / Gradle / Ivy
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;
/**
* Result of decrypting a document. Includes minimal metadata as well as the decrypted bytes.
*/
public final class DocumentDecryptResult {
private DocumentDecryptResult() {}
public final DocumentId getId() {
long ret = do_getId(mNativeObj);
DocumentId convRet = new DocumentId(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_getId(long self);
public final java.util.Optional getName() {
long ret = do_getName(mNativeObj);
java.util.Optional convRet;
if (ret != 0) {
convRet = java.util.Optional.of(new DocumentName(InternalPointerMarker.RAW_PTR, ret));
} else {
convRet = java.util.Optional.empty();
}
return convRet;
}
private static native long do_getName(long self);
public final byte [] getDecryptedData() {
byte [] ret = do_getDecryptedData(mNativeObj);
return ret;
}
private static native byte [] do_getDecryptedData(long self);
public final java.util.Date getCreated() {
long ret = do_getCreated(mNativeObj);
java.util.Date convRet = new java.util.Date(ret);
return convRet;
}
private static native long do_getCreated(long self);
public final java.util.Date getLastUpdated() {
long ret = do_getLastUpdated(mNativeObj);
java.util.Date convRet = new java.util.Date(ret);
return convRet;
}
private static native long do_getLastUpdated(long self);
public synchronized void delete() {
if (mNativeObj != 0) {
do_delete(mNativeObj);
mNativeObj = 0;
}
}
@Override
protected void finalize() throws Throwable {
try {
delete();
}
finally {
super.finalize();
}
}
private static native void do_delete(long me);
/*package*/ DocumentDecryptResult(InternalPointerMarker marker, long ptr) {
assert marker == InternalPointerMarker.RAW_PTR;
this.mNativeObj = ptr;
}
/*package*/ long mNativeObj;
}