1 /* 2 * JCaptcha, the open source java framework for captcha definition and integration 3 * Copyright (c) 2007 jcaptcha.net. All Rights Reserved. 4 * See the LICENSE.txt file distributed with this package. 5 */ 6 7 package com.octo.captcha.service.captchastore; 8 9 import org.apache.commons.collections.FastHashMap; 10 11 /*** 12 * <p><ul><li></li></ul></p> 13 * 14 * @author <a href="mailto:marc.antoine.garrigue@gmail.com">Marc-Antoine Garrigue</a> 15 * @version 1.0 16 */ 17 public class FastHashMapCaptchaStore extends MapCaptchaStore { 18 public FastHashMapCaptchaStore() { 19 this.store = new FastHashMap(); 20 } 21 }