示例#1
0
 public static void validate(
     java.lang.String companyId,
     boolean autoUserId,
     java.lang.String userId,
     boolean autoPassword,
     java.lang.String password1,
     java.lang.String password2,
     java.lang.String firstName,
     java.lang.String lastName,
     java.lang.String emailAddress)
     throws com.liferay.portal.PortalException, com.liferay.portal.SystemException {
   try {
     UserLocalManager userLocalManager = UserLocalManagerFactory.getManager();
     userLocalManager.validate(
         companyId,
         autoUserId,
         userId,
         autoPassword,
         password1,
         password2,
         firstName,
         lastName,
         emailAddress);
   } catch (com.liferay.portal.PortalException pe) {
     throw pe;
   } catch (com.liferay.portal.SystemException se) {
     throw se;
   } catch (Exception e) {
     throw new com.liferay.portal.SystemException(e);
   }
 }
示例#2
0
 public static void validate(
     java.lang.String userId, java.lang.String password1, java.lang.String password2)
     throws com.liferay.portal.PortalException, com.liferay.portal.SystemException {
   try {
     UserLocalManager userLocalManager = UserLocalManagerFactory.getManager();
     userLocalManager.validate(userId, password1, password2);
   } catch (com.liferay.portal.PortalException pe) {
     throw pe;
   } catch (com.liferay.portal.SystemException se) {
     throw se;
   } catch (Exception e) {
     throw new com.liferay.portal.SystemException(e);
   }
 }
示例#3
0
 public static void validate(
     java.lang.String userId,
     java.lang.String firstName,
     java.lang.String lastName,
     java.lang.String emailAddress,
     java.lang.String smsId)
     throws com.liferay.portal.PortalException, com.liferay.portal.SystemException {
   try {
     UserLocalManager userLocalManager = UserLocalManagerFactory.getManager();
     userLocalManager.validate(userId, firstName, lastName, emailAddress, smsId);
   } catch (com.liferay.portal.PortalException pe) {
     throw pe;
   } catch (com.liferay.portal.SystemException se) {
     throw se;
   } catch (Exception e) {
     throw new com.liferay.portal.SystemException(e);
   }
 }