Package org.openengsb.core.services.internal.security.model

Examples of org.openengsb.core.services.internal.security.model.UserPermissionSetData


    @Override
    public void createUser(String username) throws UserExistsException {
        UserData newUser = new UserData();
        newUser.setUsername(username);
        UserPermissionSetData permissionSetData = new UserPermissionSetData(username);
        newUser.setPermissionSet(permissionSetData);
        synchronized (entityManager) {
            entityManager.persist(newUser);
        }
    }
View Full Code Here

TOP

Related Classes of org.openengsb.core.services.internal.security.model.UserPermissionSetData

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.