Examples of ELService


Examples of org.apache.oozie.service.ELService

     * @return the resolved application name.
     *
     * @throws Exception thrown if the name could not be EL resolved.
     */
    public static String resolveAppName(String name, Configuration conf) throws Exception {
        ELService elService = Services.get().get(ELService.class);
        ELEvaluator elEvaluator = elService.createEvaluator("job-submit");
        Map<String, Object> map = new HashMap<String, Object>();
        for (Map.Entry<String, String> entry : conf) {
            map.put(entry.getKey(), entry.getValue());
        }
        elEvaluator.getContext().setVariables(map);
View Full Code Here

Examples of org.apache.oozie.service.ELService

     * @return the resolved application name.
     *
     * @throws Exception thrown if the name could not be EL resolved.
     */
    public static String resolveAppName(String name, Configuration conf) throws Exception {
        ELService elService = Services.get().get(ELService.class);
        ELEvaluator elEvaluator = elService.createEvaluator("job-submit");
        Map<String, Object> map = new HashMap<String, Object>();
        for (Map.Entry<String, String> entry : conf) {
            map.put(entry.getKey(), entry.getValue());
        }
        elEvaluator.getContext().setVariables(map);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.