Package com.philip.journal.core.service

Examples of com.philip.journal.core.service.ServiceFacade


                        matchedList.add(entry);
                    }
                }
            }

            final ServiceFacade facd = getFacade(session);
            for (final Entry entry : matchedList) {
                entry.setTreePath(facd.getEntryTreePath(session, entry));
            }

            return matchedList;
        }
    }
View Full Code Here


    @Override
    public List<Entry> searchEntriesSimple(final Map<String, Object> session, final String searchParam,
            final String sortField, final String direction)
    {
        final ServiceFacade facade = (ServiceFacade) session.get(Constant.SERVICE_FACADE);

        final List<Entry> list = facade.searchEntriesSimple(session, searchParam);

        final Comparator<Entry> comparator = new Comparator<Entry>() {
            @SuppressWarnings("unchecked")
            @Override
            public int compare(final Entry entry1, final Entry entry2) {
View Full Code Here

TOP

Related Classes of com.philip.journal.core.service.ServiceFacade

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.