Package org.apache.jackrabbit.server.io

Examples of org.apache.jackrabbit.server.io.PropertyHandler


                    ElementIterator iohElements = DomUtil.getChildren(el, ELEMENT_PROPERTYHANDLER, null);
                    while (iohElements.hasNext()) {
                        Element iohEl = iohElements.nextElement();
                        inst = buildClassFromConfig(iohEl);
                        if (inst != null && inst instanceof PropertyHandler) {
                            PropertyHandler handler = (PropertyHandler) inst;
                            setParameters(handler, iohEl);
                            propManager.addPropertyHandler(handler);
                        } else {
                            log.warn("Not a valid PropertyHandler : " + getClassName(iohEl));
                        }
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.server.io.PropertyHandler

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.