Package org.apache.jetspeed.security.mfa

Examples of org.apache.jetspeed.security.mfa.SecurityQuestionBean


    return result;
  }
 
  public SecurityQuestionBean getSecurityQuestionBean()
  {
    SecurityQuestionBean result = new SecurityQuestionBean();
    List<String> source = getAllQuestionsInRandomOrder();
   
    result.setQuestion1( source.get(1) );
    result.setQuestion2( source.get(2) );
    result.setQuestion3( source.get(3) );
   
    return result;
  }
View Full Code Here

TOP

Related Classes of org.apache.jetspeed.security.mfa.SecurityQuestionBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.