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

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

    private DocumentEncryptUnmanagedResult() {}
    /**
     * Unique (within the segment) id of the document
     */
    public final DocumentId getId() {
        long ret = do_getId(mNativeObj);
        DocumentId convRet = new DocumentId(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getId(long self);
    /**
     * Bytes of encrypted document content
     */
    public final byte [] getEncryptedData() {
        byte [] ret = do_getEncryptedData(mNativeObj);

        return ret;
    }
    private static native byte [] do_getEncryptedData(long self);
    /**
     * Bytes of encrypted document encryption keys (EDEKs)
     */
    public final byte [] getEncryptedDeks() {
        byte [] ret = do_getEncryptedDeks(mNativeObj);

        return ret;
    }
    private static native byte [] do_getEncryptedDeks(long self);
    /**
     * Get the users and groups whose access was successfully changed
     */
    public final SucceededResult getChanged() {
        long ret = do_getChanged(mNativeObj);
        SucceededResult convRet = new SucceededResult(InternalPointerMarker.RAW_PTR, ret);

        return convRet;
    }
    private static native long do_getChanged(long self);
    /**
     * Get the users and groups whose access failed to be modified
     */
    public final FailedResult getErrors() {
        long ret = do_getErrors(mNativeObj);
        FailedResult convRet = new FailedResult(InternalPointerMarker.RAW_PTR, ret);

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

    public final int hashCode() {
        int ret = do_hashCode(mNativeObj);

        return ret;
    }
    private static native int do_hashCode(long self);

    private final boolean rustEq(DocumentEncryptUnmanagedResult o) {
        long a0 = o.mNativeObj;
        boolean ret = do_rustEq(mNativeObj, a0);

        JNIReachabilityFence.reachabilityFence1(o);

        return ret;
    }
    private static native boolean do_rustEq(long self, long o);

    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*/ DocumentEncryptUnmanagedResult(InternalPointerMarker marker, long ptr) {
        assert marker == InternalPointerMarker.RAW_PTR;
        this.mNativeObj = ptr;
    }
    /*package*/ long mNativeObj;

    public boolean equals(Object obj) {
        if(obj instanceof DocumentEncryptUnmanagedResult){
            DocumentEncryptUnmanagedResult other = (DocumentEncryptUnmanagedResult) obj;
            return other.rustEq(this);
        }
        return false;
    }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy