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

com.ironcorelabs.sdk.UserUpdatePrivateKeyResult 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 UserUpdatePrivateKeyResult {

    private UserUpdatePrivateKeyResult() {}
    /**
     * Updated encrypted user private key
     */
    public final EncryptedPrivateKey getUserMasterPrivateKey() {
        long ret = do_getUserMasterPrivateKey(mNativeObj);
        EncryptedPrivateKey convRet = new EncryptedPrivateKey(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getUserMasterPrivateKey(long self);
    /**
     * True if this user's master key requires rotation
     */
    public final boolean getNeedsRotation() {
        boolean ret = do_getNeedsRotation(mNativeObj);

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

        /**
         * This implementation calls native code, which means it's relatively slow.
         */
        @Override
        public int hashCode() {
            return this.getUserMasterPrivateKey().hashCode() * Boolean.hashCode(this.getNeedsRotation());
        }
        public boolean equals(Object obj) {
            if(obj instanceof UserUpdatePrivateKeyResult){
                UserUpdatePrivateKeyResult uupkr = (UserUpdatePrivateKeyResult) obj;
                return (uupkr.getUserMasterPrivateKey().equals(this.getUserMasterPrivateKey()) && 
                uupkr.getNeedsRotation() == this.getNeedsRotation());
            }
            return false;
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy