Examples of CollaboratorDetails


Examples of beans.user.collaborator.entities.CollaboratorDetails

    @Override
    protected void onUpdate(Collaborator entity, EntityDetails details,
            AuditDoc auditDoc, List<AuditDoc> auditDocList)
            throws ClipsServerException {
        super.onUpdate(entity, details, auditDoc, auditDocList);
        CollaboratorDetails d = (CollaboratorDetails) details;
        if (d.id != 0) {
            //проверка на попытку смены ЛПУ
            if (d.lpuID != entity.getLpu().getId() ) {
                throwNeedAdminSecurityException("У вас недостаточно прав, что б перевести сотрудника из одного ЛПУ в другое");
            }
View Full Code Here

Examples of beans.user.collaborator.entities.CollaboratorDetails

    }


    @Override
    protected CollaboratorDetails getNewDetails() {
        return new CollaboratorDetails();
    }
View Full Code Here

Examples of beans.user.collaborator.entities.CollaboratorDetails

//        return new DirectoryCollaboratorItem((CollaboratorDetails) d);
//    }

    @Override
    protected DirectoryCollaboratorItem createFromLoadedDetails(DirectoryItemDetails details) {
        CollaboratorDetails d = (CollaboratorDetails) details;
        return new DirectoryCollaboratorItem(d);
    }
View Full Code Here

Examples of beans.user.collaborator.entities.CollaboratorDetails

        return target;
    }

    @Override
    protected DirectoryCollaboratorItem createNullItem() {
        CollaboratorDetails det = new CollaboratorDetails();
        det.id = 0;
        det.title = "";
        det.specialityIDs = new int[0];
        return new DirectoryCollaboratorItem(det);
    }
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.