Package beans.directory.simple.entities

Examples of beans.directory.simple.entities.FollowupReason


     * @throws ClipsServerException
     */
    @Override
    public boolean fixFollowUp() throws ClipsServerException {
        HashMap<Integer, FollowDownReason> fdmap = new HashMap<Integer, FollowDownReason>();
        FollowupReason upReason = findEntity(FollowupReason.class, 3);
        FollowDownReason downReason = findEntity(FollowDownReason.class, 1);
        List<FollowDownReason> fdList = findEntityList(FollowDownReason.class);
        for (FollowDownReason fd : fdList) {
            fdmap.put(Integer.parseInt(fd.getExtKey()), fd);
        }
View Full Code Here

TOP

Related Classes of beans.directory.simple.entities.FollowupReason

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.