com.ironcorelabs.sdk.PolicyCachingConfig Maven / Gradle / Ivy
// Automatically generated by rust_swig
package com.ironcorelabs.sdk;
/**
* Policy evaluation caching config
*
* Since policies are evaluated by the webservice, caching the result can greatly speed
* up encrypting a document with a PolicyGrant.
*/
public final class PolicyCachingConfig {
/**
* @param max_entries maximum number of policy evaluations that will be cached by the SDK.
* If the maximum number is exceeded, the cache will be cleared prior to storing the next entry.
*/
public PolicyCachingConfig(long max_entries) {
mNativeObj = init(max_entries);
}
private static native long init(long max_entries);
public PolicyCachingConfig() {
mNativeObj = init();
}
private static native long init();
public final long getMaxEntries() {
long ret = do_getMaxEntries(mNativeObj);
return ret;
}
private static native long do_getMaxEntries(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*/ PolicyCachingConfig(InternalPointerMarker marker, long ptr) {
assert marker == InternalPointerMarker.RAW_PTR;
this.mNativeObj = ptr;
}
/*package*/ long mNativeObj;
}