Class ReCaptcha

    • Field Detail

      • sharedState

        public Map sharedState
    • Constructor Detail

      • ReCaptcha

        public ReCaptcha()
    • Method Detail

      • init

        public void init​(Subject subject,
                         Map sharedState,
                         Map options)
        Description copied from class: AMLoginModule
        Initialize this LoginModule.

        This is an abstract method, must be implemented by user's Login Module to initialize this LoginModule with the relevant information. If this LoginModule does not understand any of the data stored in sharedState or options parameters, they can be ignored.

        Specified by:
        init in class AMLoginModule
        Parameters:
        subject - - the Subject to be authenticated.
        sharedState - - state shared with other configured LoginModules.
        options - - options specified in the login Configuration for this particular LoginModule. It contains all the global and organization attribute configuration for this module. The key of the map is the attribute name (e.g. iplanet-am-auth-ldap-server) as String, the value is the value of the corresponding attribute as Set.
      • process

        public int process​(Callback[] in_callbacks,
                           int state)
                    throws LoginException
        Description copied from class: AMLoginModule
        Abstract method must be implemented by each login module to control the flow of the login process.

        This method takes an array of sbumitted Callback, process them and decide the order of next state to go. Return -1 if the login is successful, return 0 if the LoginModule should be ignored.

        Specified by:
        process in class AMLoginModule
        Parameters:
        in_callbacks - Callback[] for this Login state
        state - Order of state. State order starts with 1.
        Returns:
        order of next state. return -1 if authentication is successful, return 0 if the LoginModule should be ignored.
        Throws:
        LoginException - if login fails.
      • getPrincipal

        public Principal getPrincipal()
        Description copied from class: AMLoginModule
        Abstract method must be implemeted by each login module to get the user Principal
        Specified by:
        getPrincipal in class AMLoginModule
        Returns:
        Principal