Package beans.cec.entity

Examples of beans.cec.entity.CommitteeDetails


     * @security дата в деталях не должна быть прошедшей
     */
    @Override
    protected void onUpdate(Committee entity, EntityDetails details,
            AuditDoc auditDoc, List<AuditDoc> auditDocList) throws ClipsServerException {
        CommitteeDetails d = (CommitteeDetails) details;
       
        checkIsNotInThePast(d.date);
        entity.setDate(d.date);
    }
View Full Code Here


        super(details, al);
    }

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

TOP

Related Classes of beans.cec.entity.CommitteeDetails

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.