
com.google.code.kaptcha.util.Configurable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kaptcha Show documentation
Show all versions of kaptcha Show documentation
A web kaptcha generation engine
The newest version!
package com.google.code.kaptcha.util;
/**
* This interface determines if a class can be configured by properties handled
* by config manager.
*/
public abstract class Configurable
{
private Config config = null;
public Config getConfig()
{
return this.config;
}
public void setConfig(Config config)
{
this.config = config;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy