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

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

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

/**
 * A failure to edit a group's administrator or membership lists
 */
public final class GroupAccessEditErr {

    private GroupAccessEditErr() {}
    /**
     * Get user whose access was to be granted/revoked
     */
    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);
    /**
     * Get the reason for grant/revoke failure
     */
    public final String getError() {
        String ret = do_getError(mNativeObj);

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy