Package com.sun.enterprise.admin.util

Examples of com.sun.enterprise.admin.util.Validator


        @throws IllegalArgumentException if validator says that object is NOT valid
     */
    public static void checkValid(Object object, String  name )
        throws IllegalArgumentException
    {
        final Validator validator  = (object instanceof Validator ) ?
                                        (Validator)object :
                                        BaseValidator.getInstance();
        check( object, name, validator );
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.util.Validator

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.