Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Instanciate a CaptchaService

Note
titleIt *must* be a *singleton*

Code Block
import com.octo.captcha.service.image.ImageCaptchaService;
import com.octo.captcha.service.image.DefaultManageableImageCaptchaService;

public class CaptchaServiceSingleton {

    private static ImageCaptchaService instance = new DefaultManageableImageCaptchaService();

    public static ImageCaptchaService getInstance(){
        return instance;
    }
}

...