All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.cnr.iit.jscontact.tools.dto.utils.ClassUtils Maven / Gradle / Ivy

package it.cnr.iit.jscontact.tools.dto.utils;

import org.apache.commons.lang3.StringUtils;

/**
 * Utility class for supporting class loading of dto classes.
 *
 * @author Mario Loffredo
 */
public class ClassUtils {

    /**
     * Returns the dto package full name.
     * @return the dto package full name
     */
    private static String getDtoPackageName() {

        String thisClassName = ClassUtils.class.getCanonicalName();
        return thisClassName.replace(".utils.ClassUtils", StringUtils.EMPTY);
    }

    public static Class forName(String className) throws ClassNotFoundException {
        return Class.forName(getDtoPackageName()+"."+className);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy