Package de.innovationgate.webgate.api

Examples of de.innovationgate.webgate.api.WGUserProfile.save()


            userProfile = persDB.getDummyProfile(wgpid);
        }

        if (userProfile != null && !userProfile.isDummy()) {
            TMLUserProfile.prepareNewProfile(userProfile);
            userProfile.save();
        }

        return userProfile;
    }
View Full Code Here


    if (password != null) {
      profile.setMetaData(WGUserProfile.META_PASSWORD, password);
    }

    try {
      profile.save();
    }
    catch (WGAPIException e) {
      this.addwarning("Unable to create user profile: " + e.getMessage(), true);
            return TMLUserProfile.RC_NOT_CREATABLE;
    }
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.