1 25 package org.ofbiz.entity.config; 26 27 import org.w3c.dom.Element ; 28 29 37 public class ResourceLoaderInfo extends NamedInfo { 38 public String className; 39 public String prependEnv; 40 public String prefix; 41 42 public ResourceLoaderInfo(Element element) { 43 super(element); 44 this.className = element.getAttribute("class"); 45 this.prependEnv = element.getAttribute("prepend-env"); 46 this.prefix = element.getAttribute("prefix"); 47 } 48 } 49 | Popular Tags |