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

io.proximax.privacy.strategy.CustomPrivacyStrategy Maven / Gradle / Ivy

The newest version!
package io.proximax.privacy.strategy;

import io.proximax.model.PrivacyType;

/**
 * The abstract class to be used when creating custom privacy strategy
 * 
*
* This fixes the privacy type as CUSTOM * @see PrivacyType */ public abstract class CustomPrivacyStrategy extends PrivacyStrategy { /** * Get the privacy type which is set as CUSTOM * @return the privacy type's int value * @see PrivacyType */ @Override public int getPrivacyType() { return PrivacyType.CUSTOM.getValue(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy