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

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

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


public final class SucceededResult {

    private SucceededResult() {}
    /**
     * Get list of users whose access was granted/revoked
     */
    public final UserId [] getUsers() {
        UserId [] ret = do_getUsers(mNativeObj);

        return ret;
    }
    private static native UserId [] do_getUsers(long self);
    /**
     * Get list of groups whose access was granted/revoked
     */
    public final GroupId [] getGroups() {
        GroupId [] ret = do_getGroups(mNativeObj);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy