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

org.macrocloud.kernel.security.handler.IPermissionHandler Maven / Gradle / Ivy

There is a newer version: 1.1.0-RELEASE
Show newest version
package org.macrocloud.kernel.security.handler;

/**
 * 权限校验通用接口
 *
 */
public interface IPermissionHandler {

	/**
	 * 判断角色是否具有接口权限
	 *
	 * @return {boolean}
	 */
	boolean permissionAll();

	/**
	 * 判断角色是否具有接口权限
	 *
	 * @param permission 权限编号
	 * @return {boolean}
	 */
	boolean hasPermission(String permission);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy