Search in sources :

Example 1 with OnSecuring

use of net.iGap.observers.interfaces.OnSecuring in project iGap-Android by KianIranian-STDG.

the class LoginActions method initSecureInterface.

/**
 * initialize securing interface for detecting
 * securing is done and continue login actions
 */
private void initSecureInterface() {
    Log.wtf(this.getClass().getName(), "initSecureInterface");
    G.onSecuring = new OnSecuring() {

        @Override
        public void onSecure() {
            Log.wtf(this.getClass().getName(), "onSecure");
            login();
        }
    };
}
Also used : OnSecuring(net.iGap.observers.interfaces.OnSecuring)

Aggregations

OnSecuring (net.iGap.observers.interfaces.OnSecuring)1