Package org.ejbca.core.model.ca

Examples of org.ejbca.core.model.ca.AuthStatusException


              }
                return data.toUserDataVO();
            }
          final String msg = intres.getLocalizedMessage("authentication.wrongstatus", UserDataConstants.getStatusText(status), Integer.valueOf(status), username);             
          logSession.log(admin, data.getCaId(), LogConstants.MODULE_CA, new Date(),username, null, LogConstants.EVENT_INFO_USERAUTHENTICATION, msg);
            throw new AuthStatusException(msg);
        } catch (ObjectNotFoundException oe) {
          final String msg = intres.getLocalizedMessage("authentication.usernotfound", username);             
          logSession.log(admin, admin.getCaId(), LogConstants.MODULE_CA, new Date(),username, null, LogConstants.EVENT_INFO_USERAUTHENTICATION, msg);
            throw oe;
        } catch (AuthStatusException se) {
View Full Code Here

TOP

Related Classes of org.ejbca.core.model.ca.AuthStatusException

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.