Package info.magnolia.cms.core.search

Examples of info.magnolia.cms.core.search.Query


        while (catalogIter.hasNext())
        {
            String catalog = (String) catalogIter.next();
            try
            {
                Query q = qm.createQuery("//commands//" + catalog + "//*", Query.XPATH);
                QueryResult qr = q.execute();
                Collection collection = qr.getContent("mgnl:contentNode");
                if (CollectionUtils.isEmpty(collection))
                    continue;
                Iterator commandIter = collection.iterator();
                Set<String> commands = new HashSet<String>();
View Full Code Here


    public Collection<Content> findAllJobDefinitions() throws RepositoryException
    {
        QueryManager qm = MgnlContext.getQueryManager(ContentRepository.CONFIG);
        try
        {
            Query q = qm.createQuery(SCHEDULER_CONFIG_JOBS_XPATH_QUERY, Query.XPATH);
            QueryResult qr = q.execute();
            return qr.getContent("mgnl:contentNode");
        }
        catch (RepositoryException e)
        {
            log.error(e.getMessage());
View Full Code Here

TOP

Related Classes of info.magnolia.cms.core.search.Query

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.