com.iovation.launchkey.sdk.integration.managers.FenceCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-integration-tests Show documentation
Show all versions of sdk-integration-tests Show documentation
Integration tests for the LaunchKey Service SDK for Java
package com.iovation.launchkey.sdk.integration.managers;
import com.iovation.launchkey.sdk.domain.policy.Fence;
public class FenceCache {
private Fence cachedFence;
public Fence getCachedFence() {
return cachedFence;
}
public void setCachedFence(Fence cachedFence) {
this.cachedFence = cachedFence;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy