Uses of Class
org.apache.jackrabbit.core.ItemImpl
-
Packages that use ItemImpl Package Description org.apache.jackrabbit.core Contains the core classes that provide the implementation of the JCR API.org.apache.jackrabbit.core.security.authorization org.apache.jackrabbit.core.security.authorization.combined org.apache.jackrabbit.core.security.user org.apache.jackrabbit.core.session org.apache.jackrabbit.core.version The versioning framework in jackrabbit consists of 3 layers. -
-
Uses of ItemImpl in org.apache.jackrabbit.core
Subclasses of ItemImpl in org.apache.jackrabbit.core Modifier and Type Class Description class
NodeImpl
NodeImpl
implements theNode
interface.class
PropertyImpl
PropertyImpl
implements theProperty
interface.Methods in org.apache.jackrabbit.core that return ItemImpl Modifier and Type Method Description ItemImpl
ItemManager. getItem(ItemId id)
ItemImpl
ItemManager. getItem(Path path)
Deprecated.As of JSR 283, aPath
doesn't anymore uniquely identify anItem
, thereforeItemManager.getNode(Path)
andItemManager.getProperty(Path)
should be used instead.Methods in org.apache.jackrabbit.core with parameters of type ItemImpl Modifier and Type Method Description boolean
ItemValidator. canModify(ItemImpl item, int options, int permissions)
void
ItemValidator. checkModify(ItemImpl item, int options, int permissions)
void
ItemValidator. checkRemove(ItemImpl item, int options, int permissions)
void
ItemLifeCycleListener. itemCreated(ItemImpl item)
Called when anItemImpl
instance has been created.void
ItemLifeCycleListener. itemDestroyed(ItemId id, ItemImpl item)
Called when anItemImpl
instance has been destroyed (i.e.void
ItemLifeCycleListener. itemInvalidated(ItemId id, ItemImpl item)
Called when anItemImpl
instance has been invalidated (i.e.protected void
ProtectedItemModifier. removeItem(ItemImpl itemImpl)
-
Uses of ItemImpl in org.apache.jackrabbit.core.security.authorization
Methods in org.apache.jackrabbit.core.security.authorization with parameters of type ItemImpl Modifier and Type Method Description boolean
AbstractAccessControlProvider. isAcItem(ItemImpl item)
Test if the given node is itself a rep:ACL or a rep:ACE node.boolean
AccessControlUtils. isAcItem(ItemImpl item)
Test if the specified path points to an item that defines AC information and consequently should be considered protected. -
Uses of ItemImpl in org.apache.jackrabbit.core.security.authorization.combined
Methods in org.apache.jackrabbit.core.security.authorization.combined with parameters of type ItemImpl Modifier and Type Method Description boolean
CombinedProvider. isAcItem(ItemImpl item)
-
Uses of ItemImpl in org.apache.jackrabbit.core.security.user
Methods in org.apache.jackrabbit.core.security.user with parameters of type ItemImpl Modifier and Type Method Description boolean
UserAccessControlProvider. isAcItem(ItemImpl item)
Always returns false, since this ac provider does not use content stored in items to evaluate AC information. -
Uses of ItemImpl in org.apache.jackrabbit.core.session
Methods in org.apache.jackrabbit.core.session that return types with arguments of type ItemImpl Modifier and Type Method Description static SessionItemOperation<ItemImpl>
SessionItemOperation. getItem(String path)
Creates a session operation for getting the item at the given path. -
Uses of ItemImpl in org.apache.jackrabbit.core.version
Subclasses of ItemImpl in org.apache.jackrabbit.core.version Modifier and Type Class Description class
VersionHistoryImpl
Base implementation of theVersionHistory
interface.class
VersionImpl
Base implementation of theVersion
interface.
-