Package com.sun.enterprise.admin.pluggable

Examples of com.sun.enterprise.admin.pluggable.ValidationExtensionFeature


        String validationDescrFile =
                "com/sun/enterprise/config/serverbeans/validation/config/ServerTestList.xml";
        loadDescriptors(validationDescrFile);
        String extValidationDescrFile = null;
        // Add extra validation descriptors from extended Feature
        ValidationExtensionFeature vef = AdminService.getValidationExtensionFeature();
        if (vef != null) {
            extValidationDescrFile = vef.getValidationDescriptorFile();
            if (extValidationDescrFile != null)
                loadDescriptors(extValidationDescrFile);
        }
       
        _nameListMgr = new NameListMgr(ctx, bStaticContext);
View Full Code Here


        Class c = getValidatorClass(v.getCustomValidatorClass(), TEST_PACKAGE);
        String cn = c.getSimpleName();
        if(cn.equals("GenericValidator"))
        {
            String extTestPackage = null;
            ValidationExtensionFeature vef = AdminService.getValidationExtensionFeature();
            if (vef != null) {
                extTestPackage = vef.getTestPackage();
                if (extTestPackage != null) {
                    c = getValidatorClass(v.getCustomValidatorClass(), extTestPackage);
                }
            }
        }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.pluggable.ValidationExtensionFeature

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.