com.abavilla.fpi.telco.ext.codec.BotSourceCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fpi-telco-plugin Show documentation
Show all versions of fpi-telco-plugin Show documentation
Plugin for FPI Framework to integrate with Telco services
The newest version!
package com.abavilla.fpi.telco.ext.codec;
import com.abavilla.fpi.fw.codec.AbsEnumCodec;
import com.abavilla.fpi.telco.ext.enums.BotSource;
/**
* MongoDB Codec for {@link BotSource} enum.
*
* @author Vince Villamora
*/
public class BotSourceCodec extends AbsEnumCodec {
/**
* {@inheritDoc}
*/
@Override
public Class getEncoderClass() {
return BotSource.class;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy