Package org.jwall.web.audit.util

Examples of org.jwall.web.audit.util.VariableContext.expand()


      Map<String, String> parameter = objectFactory.getAttributes(node);
      Map<String, String> expanded = new HashMap<String, String>();
      VariableContext ctx = new VariableContext(System.getProperties());
      for (String key : parameter.keySet()) {
        expanded.put(key, ctx.expand(parameter.get(key)));
      }

      log.debug("Creating object from '{}' with parameters: {}",
          node.getNodeName(), expanded);
      Object o = objectFactory.create(node.getNodeName(), expanded, node);
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.