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

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

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

/**
 * Abbreviated group meta information.
 */
public final class GroupMetaResult {

    private GroupMetaResult() {}
    /**
     * get the unique id of the group
     */
    public final GroupId getId() {
        long ret = do_getId(mNativeObj);
        GroupId convRet = new GroupId(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getId(long self);
    /**
     * null if the group has no name, else the group's name
     */
    public final java.util.Optional getName() {
        long ret = do_getName(mNativeObj);
        java.util.Optional convRet;
        if (ret != 0) {
            convRet = java.util.Optional.of(new GroupName(InternalPointerMarker.RAW_PTR, ret));
        } else {
            convRet = java.util.Optional.empty();
        }

        return convRet;
    }
    private static native long do_getName(long self);
    /**
     * true if the calling user is a group admin
     */
    public final boolean isAdmin() {
        boolean ret = do_isAdmin(mNativeObj);

        return ret;
    }
    private static native boolean do_isAdmin(long self);
    /**
     * true if the calling user is a group member
     */
    public final boolean isMember() {
        boolean ret = do_isMember(mNativeObj);

        return ret;
    }
    private static native boolean do_isMember(long self);
    /**
     * get the date and time that the group was created
     */
    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);
    /**
     * get the date and time that the group was last updated
     */
    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);
    /**
     * null if the calling user is not a group admin, else a NullableBoolean of if the group private key needs rotation
     */
    public final java.util.Optional getNeedsRotation() {
        long ret = do_getNeedsRotation(mNativeObj);
        java.util.Optional convRet;
        if (ret != 0) {
            convRet = java.util.Optional.of(new NullableBoolean(InternalPointerMarker.RAW_PTR, ret));
        } else {
            convRet = java.util.Optional.empty();
        }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy