Examples of IdentityManagementException


Examples of org.jboss.seam.security.management.IdentityManagementException

         {
            throw (IdentityManagementException) ex;
         }
         else
         {
            throw new IdentityManagementException("Could not create account", ex);
         }
      }      
   }
View Full Code Here

Examples of org.jboss.seam.security.management.IdentityManagementException

        userApiKeyProperty =
                new AnnotatedBeanProperty<UserApiKey>(getUserClass(),
                        UserApiKey.class);
        if (!userApiKeyProperty.isSet()) {
            throw new IdentityManagementException(
                    "Invalid userClass "
                            + getUserClass().getName()
                            + " - required annotation @UserApiKey not found on any Field or Method.");
        }
View Full Code Here

Examples of org.jboss.seam.security.management.IdentityManagementException

        String passwordHash = null;

        if (passwordSaltProperty.isSet()) {
            String encodedSalt = (String) passwordSaltProperty.getValue(user);
            if (encodedSalt == null) {
                throw new IdentityManagementException(
                        "A @PasswordSalt property was found on entity " + user
                                + ", but it contains no value");
            }

            passwordHash =
View Full Code Here

Examples of org.picketlink.idm.IdentityManagementException

        if (agents.isEmpty()) {
            return null;
        } else if (agents.size() == 1) {
            return agents.get(0);
        } else {
            throw new IdentityManagementException("Error - multiple users found with same email");
        }
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.