Uses of Interface
org.nuxeo.ecm.webengine.security.Guard
-
Packages that use Guard Package Description org.nuxeo.ecm.webengine.model org.nuxeo.ecm.webengine.model.impl org.nuxeo.ecm.webengine.security org.nuxeo.ecm.webengine.security.guards -
-
Uses of Guard in org.nuxeo.ecm.webengine.model
Fields in org.nuxeo.ecm.webengine.model declared as Guard Modifier and Type Field Description protected Guard
LinkDescriptor. guard
Methods in org.nuxeo.ecm.webengine.model that return Guard Modifier and Type Method Description Guard
ResourceType. getGuard()
-
Uses of Guard in org.nuxeo.ecm.webengine.model.impl
Fields in org.nuxeo.ecm.webengine.model.impl declared as Guard Modifier and Type Field Description protected Guard
AbstractResourceType. guard
Methods in org.nuxeo.ecm.webengine.model.impl that return Guard Modifier and Type Method Description Guard
AbstractResourceType. getGuard()
-
Uses of Guard in org.nuxeo.ecm.webengine.security
Subinterfaces of Guard in org.nuxeo.ecm.webengine.security Modifier and Type Interface Description interface
Permission
Classes in org.nuxeo.ecm.webengine.security that implement Guard Modifier and Type Class Description class
DefaultPermission
Fields in org.nuxeo.ecm.webengine.security declared as Guard Modifier and Type Field Description static Guard
Guard. DEFAULT
protected Guard
DefaultPermission. guard
Fields in org.nuxeo.ecm.webengine.security with type parameters of type Guard Modifier and Type Field Description protected Map<String,Guard>
GuardDescriptor. guards
protected ConcurrentMap<String,Guard>
PermissionService. guards
Methods in org.nuxeo.ecm.webengine.security that return Guard Modifier and Type Method Description Guard
GuardDescriptor. getGuard()
Guard
PermissionService. getGuard(String name)
Guard
GuardFactory. newGuard(String value)
Create a new guard and initialize it using the given string.static Guard
PermissionService. parse(String expr)
Guard
PermissionService. parse(String expr, Map<String,Guard> localGuards)
Guard
PermissionService. unregisterGuard(String name)
Methods in org.nuxeo.ecm.webengine.security that return types with arguments of type Guard Modifier and Type Method Description Map<String,Guard>
GuardDescriptor. getGuards()
Methods in org.nuxeo.ecm.webengine.security with parameters of type Guard Modifier and Type Method Description void
PermissionService. registerGuard(String name, Guard guard)
Method parameters in org.nuxeo.ecm.webengine.security with type arguments of type Guard Modifier and Type Method Description Guard
PermissionService. parse(String expr, Map<String,Guard> localGuards)
Constructors in org.nuxeo.ecm.webengine.security with parameters of type Guard Constructor Description DefaultPermission(String name, Guard guard)
-
Uses of Guard in org.nuxeo.ecm.webengine.security.guards
Classes in org.nuxeo.ecm.webengine.security.guards that implement Guard Modifier and Type Class Description class
And
class
FacetGuard
class
GroupGuard
class
IsAdministratorGuard
class
Not
class
Or
class
PermissionGuard
Check access against a built-in permissionclass
SchemaGuard
class
ScriptGuard
class
TypeGuard
class
UserGuard
Fields in org.nuxeo.ecm.webengine.security.guards declared as Guard Modifier and Type Field Description protected Guard
Not. perm
protected Guard[]
And. perms
protected Guard[]
Or. perms
Constructors in org.nuxeo.ecm.webengine.security.guards with parameters of type Guard Constructor Description And(Guard... perms)
Not(Guard guard)
Or(Guard... guards)
Constructor parameters in org.nuxeo.ecm.webengine.security.guards with type arguments of type Guard Constructor Description And(Collection<Guard> guards)
Or(Collection<Guard> guards)
-