Package org.kie.remote.services.rest.query

Examples of org.kie.remote.services.rest.query.InternalTaskQueryHelper


        String oper = getRelativePath();
        Map<String, String[]> params = makeKeysLowerCase(getRequestParams());
        int[] pageInfo = getPageNumAndPageSize(params, oper);
        int maxNumResults = getMaxNumResultsNeeded(pageInfo);

        InternalTaskQueryHelper queryHelper = new InternalTaskQueryHelper(this);
        JaxbQueryTaskResult result
            = queryHelper.queryTaskOrProcInstAndAssociatedVariables(identityProvider.getName(), params, pageInfo, maxNumResults);
        queryHelper.dispose();
       
        return createCorrectVariant(result, headers);
    }
View Full Code Here

TOP

Related Classes of org.kie.remote.services.rest.query.InternalTaskQueryHelper

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.