com.ironcorelabs.sdk.UserWithKey Maven / Gradle / Ivy
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;
public final class UserWithKey {
private UserWithKey() {}
public final UserId getUser() {
long ret = do_getUser(mNativeObj);
UserId convRet = new UserId(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_getUser(long self);
public final PublicKey getPublicKey() {
long ret = do_getPublicKey(mNativeObj);
PublicKey convRet = new PublicKey(InternalPointerMarker.RAW_PTR, ret);
return convRet;
}
private static native long do_getPublicKey(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*/ UserWithKey(InternalPointerMarker marker, long ptr) {
assert marker == InternalPointerMarker.RAW_PTR;
this.mNativeObj = ptr;
}
/*package*/ long mNativeObj;
}