Coverage Report - org.acegisecurity.captcha.CaptchaSecurityContext
 
Classes in this File Line Coverage Branch Coverage Complexity
CaptchaSecurityContext
N/A 
N/A 
1
 
 1  
 /* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
 2  
  *
 3  
  * Licensed under the Apache License, Version 2.0 (the "License");
 4  
  * you may not use this file except in compliance with the License.
 5  
  * You may obtain a copy of the License at
 6  
  *
 7  
  *     http://www.apache.org/licenses/LICENSE-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing, software
 10  
  * distributed under the License is distributed on an "AS IS" BASIS,
 11  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 12  
  * See the License for the specific language governing permissions and
 13  
  * limitations under the License.
 14  
  */
 15  
 
 16  
 package org.acegisecurity.captcha;
 17  
 
 18  
 import org.acegisecurity.context.SecurityContext;
 19  
 
 20  
 
 21  
 /**
 22  
  * Interface that add humanity concerns to the SecurityContext
 23  
  *
 24  
  * @author marc antoine garrigue
 25  
  */
 26  
 public interface CaptchaSecurityContext extends SecurityContext {
 27  
     //~ Methods ========================================================================================================
 28  
 
 29  
     /**
 30  
      * DOCUMENT ME!
 31  
      *
 32  
      * @return number of human restricted resources requests since the last passed captcha.
 33  
      */
 34  
     int getHumanRestrictedResourcesRequestsCount();
 35  
 
 36  
     /**
 37  
      * DOCUMENT ME!
 38  
      *
 39  
      * @return the date of the last passed Captcha in millis, 0 if the user never passed captcha.
 40  
      */
 41  
     long getLastPassedCaptchaDateInMillis();
 42  
 
 43  
     /**
 44  
      * Method to increment the human Restricted Resrouces Requests Count;
 45  
      */
 46  
     void incrementHumanRestrictedRessoucesRequestsCount();
 47  
 
 48  
     /**
 49  
      * DOCUMENT ME!
 50  
      *
 51  
      * @return true if the current user has already passed a captcha.
 52  
      */
 53  
     boolean isHuman();
 54  
 
 55  
     /**
 56  
      * set human attribute, should called after captcha validation.
 57  
      */
 58  
     void setHuman();
 59  
 }