Examples of PermissionSetData


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

            Root<PermissionSetData> from = query.from(PermissionSetData.class);
            query.where(cb.equal(from.get("name"), permissionSet));
            query.select(from);

            try {
                PermissionSetData found = entityManager.createQuery(query).getSingleResult();
                return found;
            } catch (Exception ex) {
                throw new PermissionSetNotFoundException("permissionSet " + permissionSet + " not found");
            }
        }
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.