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

io.leopard.web.security.xss.CustomBeanUtil Maven / Gradle / Ivy

The newest version!
package io.leopard.web.security.xss;

@Deprecated
public class CustomBeanUtil {

	/**
	 * 是否自定义的类.
	 * 
	 * @param clazz
	 * @return
	 */
	public static boolean isCustomBean(Class clazz) {
		String className = clazz.getName();
		return isCustomBean(className);
	}

	public static boolean isCustomBean(String className) {
		if (className.startsWith("com.duowan")) {
			return true;
		}
		if (className.startsWith("com.yy")) {
			return true;
		}
		if (className.startsWith("cn.kuaikuai")) {
			return true;
		}
		if (className.startsWith("com.laopao")) {
			return true;
		}
		return false;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy