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

com.alicp.jetcache.support.AbstractValueEncoder Maven / Gradle / Ivy

The newest version!
package com.alicp.jetcache.support;

import java.util.function.Function;

/**
 * Created on 2016/10/4.
 *
 * @author huangli
 */
public abstract class AbstractValueEncoder implements Function, ValueEncoders {

    protected boolean useIdentityNumber;

    public AbstractValueEncoder(boolean useIdentityNumber) {
        this.useIdentityNumber = useIdentityNumber;
    }

    public boolean isUseIdentityNumber() {
        return useIdentityNumber;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy