All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ironcorelabs.sdk.UserAccessErr Maven / Gradle / Ivy

There is a newer version: 0.16.0
Show newest version
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;

/**
 * A single grant/remove failure for a user.
 */
public final class UserAccessErr {

    private UserAccessErr() {}

    public final UserId getId() {
        long ret = do_getId(mNativeObj);
        UserId convRet = new UserId(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getId(long self);

    public final String getErr() {
        String ret = do_getErr(mNativeObj);

        return ret;
    }
    private static native String do_getErr(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*/ UserAccessErr(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy