Package org.apache.lenya.ac

Examples of org.apache.lenya.ac.AccreditableManagerFactory


     */
    protected void setupAccreditableManager(Configuration configuration)
            throws ConfigurationException, ServiceException, ParameterException {
        Configuration config = configuration.getChild(ACCREDITABLE_MANAGER_ELEMENT, false);
        if (config != null) {
            AccreditableManagerFactory factory = null;
            try {
                factory = (AccreditableManagerFactory) this.manager
                        .lookup(AccreditableManagerFactory.ROLE);
                this.accreditableManager = factory.getAccreditableManager(config);
                this.accreditableManager.addItemManagerListener(this);
            } finally {
                if (factory != null) {
                    this.manager.release(factory);
                }
View Full Code Here

TOP

Related Classes of org.apache.lenya.ac.AccreditableManagerFactory

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.