Uses of Class
com.jk.core.security.JKPrivilige
Packages that use JKPrivilige
-
Uses of JKPrivilige in com.jk.core.security
Methods in com.jk.core.security that return JKPriviligeModifier and TypeMethodDescriptionstatic JKPriviligeJKSecurityManager.createPrivilige(String name, JKPrivilige parent) This method creates a new privilege with the given name and parent privilege.static JKPriviligeJKSecurityManager.createPrivilige(String name, JKPrivilige parent, int number) This method creates a new privilege with the given name, parent privilege, and number.JKPrivilige.getParentPrivlige()This method gets the parent privilege.Methods in com.jk.core.security that return types with arguments of type JKPriviligeModifier and TypeMethodDescriptionJKPrivilige.getChilds()This method gets the list of child privileges associated with this privilege.JKUser.getPriviliges()This method gets the privileges list.Methods in com.jk.core.security with parameters of type JKPriviligeModifier and TypeMethodDescriptionvoidJKAuthorizer.checkAllowed(JKPrivilige privilige) This method checks if the specified privilege is allowed.voidJKAuthorizer.checkAllowed(JKUser user, JKPrivilige privilige) This method checks if the specified user has the given privilege allowed.static voidJKSecurityManager.checkAllowedPrivilige(JKPrivilige privilige) This method checks if the current user has the privilege to perform a specific action.static JKPriviligeJKSecurityManager.createPrivilige(String name, JKPrivilige parent) This method creates a new privilege with the given name and parent privilege.static JKPriviligeJKSecurityManager.createPrivilige(String name, JKPrivilige parent, int number) This method creates a new privilege with the given name, parent privilege, and number.booleanJKAuthorizer.isValidPrivilige(JKPrivilige privilige) This method checks if the specified privilege is valid.voidJKPrivilige.setParentPrivlige(JKPrivilige parentPrivlige) This method sets the parent privilege to the specified value.Method parameters in com.jk.core.security with type arguments of type JKPriviligeModifier and TypeMethodDescriptionvoidJKPrivilige.setChilds(List<JKPrivilige> childs) This method sets the list of child privileges.voidJKUser.setPriviliges(List<JKPrivilige> priviliges) This method sets the privileges list to the provided one.Constructors in com.jk.core.security with parameters of type JKPriviligeModifierConstructorDescriptionJKPrivilige(int priviligeId, String name, JKPrivilige parent) This method constructs a newJKPriviligewith a given identifier (ID), name, and parent privilege.JKPrivilige(int priviligeId, String name, JKPrivilige parent, int number) This method constructs a newJKPriviligewith a given identifier (ID), name, parent privilege and number.JKPrivilige(String name, JKPrivilige parent, int number) This method constructs a newJKPriviligewith a given name, parent privilege and number.