public class PropertyEntryImpl extends Object implements PropertyEntry
PropertyEntryImpl
implements a reference to a property state.Modifier and Type | Field and Description |
---|---|
protected EntryFactory |
factory
The item state factory to create the item state.
|
protected Name |
name
The name of the target item state.
|
protected NodeEntryImpl |
parent
Hard reference to the parent
NodeEntry . |
Modifier and Type | Method and Description |
---|---|
void |
calculateStatus()
Calculates the status of the underlying
ItemState : any pending
changes to the underlying ItemState are applied. |
void |
complete(Operation operation)
Clean up this entry upon
Operation.undo() or Operation.persisted() . |
boolean |
denotesNode()
Returns false.
|
long |
getGeneration()
The required generation of this
HierarchyEntry . |
PropertyId |
getId() |
protected IdFactory |
getIdFactory()
Shortcut for
EntryFactory.getIdFactory() |
protected EntryFactory.InvalidationStrategy |
getInvalidationStrategy() |
ItemState |
getItemState()
If this
HierarchyEntry has already been resolved before
(see HierarchyEntry.isAvailable() ), that ItemState is returned. |
protected TransientItemStateFactory |
getItemStateFactory()
Shortcut for
EntryFactory.getItemStateFactory() |
Name |
getName() |
NodeEntry |
getParent()
Returns the
NodeEntry being parent to this
HierarchyEntry . |
Path |
getPath() |
protected PathFactory |
getPathFactory()
Shortcut for
EntryFactory.getPathFactory() |
PropertyState |
getPropertyState() |
int |
getStatus()
If this
HierarchyEntry provides an underlying
ItemState this method returns the status of that state,
otherwise it returns Status._UNDEFINED_ . |
PropertyId |
getWorkspaceId()
Returns the ID that must be used for resolving this entry OR loading its
children entries from the persistent layer.
|
Path |
getWorkspacePath() |
void |
invalidate(boolean recursive)
Invalidates the underlying
ItemState if available and if it
is not transiently modified. |
protected void |
invalidateInternal(boolean recursive)
Invalidates the underlying
ItemState . |
boolean |
isAvailable()
Returns
true if the referenced ItemState is
available. |
void |
reload(boolean recursive)
Reloads this hierarchy entry and the corresponding ItemState, if this
entry has already been resolved.
|
void |
remove()
Removes this
HierarchyEntry from its parent and sets the
status of the underlying ItemState to Status.REMOVED or to
Status.STALE_DESTROYED , respectively. |
void |
revert()
Traverses the hierarchy and reverts all transient modifications such as
adding, modifying or removing item states.
|
void |
setItemState(ItemState state)
Set the ItemState this hierarchyEntry will be resolved to.
|
void |
transientRemove()
Traverses the hierarchy and marks all available item states as transiently
removed.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
calculateStatus, getGeneration, getItemState, getName, getParent, getPath, getStatus, getWorkspacePath, invalidate, isAvailable, reload, remove, revert, setItemState, transientRemove
protected Name name
protected NodeEntryImpl parent
NodeEntry
.protected final EntryFactory factory
public PropertyId getId() throws InvalidItemStateException, RepositoryException
getId
in interface PropertyEntry
NodeId
of this child node entry.InvalidItemStateException
RepositoryException
PropertyEntry.getId()
public PropertyId getWorkspaceId() throws InvalidItemStateException, RepositoryException
PropertyEntry
getId()
unless any of its ancestors has been transiently
moved.getWorkspaceId
in interface PropertyEntry
InvalidItemStateException
RepositoryException
PropertyEntry.getWorkspaceId()
public PropertyState getPropertyState() throws ItemNotFoundException, RepositoryException
getPropertyState
in interface PropertyEntry
PropertyState
.ItemNotFoundException
- if the PropertyState
does not
exist anymore.RepositoryException
- if an error occurs while retrieving the
PropertyState
.PropertyEntry.getPropertyState()
public boolean denotesNode()
denotesNode
in interface HierarchyEntry
HierarchyEntry.denotesNode()
public void complete(Operation operation) throws RepositoryException
HierarchyEntry
Operation.undo()
or Operation.persisted()
.complete
in interface HierarchyEntry
RepositoryException
HierarchyEntry.complete(Operation)
protected TransientItemStateFactory getItemStateFactory()
EntryFactory.getItemStateFactory()
protected PathFactory getPathFactory()
EntryFactory.getPathFactory()
protected IdFactory getIdFactory()
EntryFactory.getIdFactory()
protected EntryFactory.InvalidationStrategy getInvalidationStrategy()
protected void invalidateInternal(boolean recursive)
ItemState
. If recursive
is
true also invalidates the underlying item states of all child entries.recursive
- public Name getName()
getName
in interface HierarchyEntry
HierarchyEntry.getName()
public Path getPath() throws RepositoryException
getPath
in interface HierarchyEntry
RepositoryException
HierarchyEntry.getPath()
public Path getWorkspacePath() throws RepositoryException
getWorkspacePath
in interface HierarchyEntry
HierarchyEntry.getPath()
. In case of moved items this method return the
original path as it is present on the persistent layer.RepositoryException
HierarchyEntry.getWorkspacePath()
public NodeEntry getParent()
HierarchyEntry
NodeEntry
being parent to this
HierarchyEntry
.getParent
in interface HierarchyEntry
HierarchyEntry
HierarchyEntry.getParent()
public int getStatus()
HierarchyEntry
HierarchyEntry
provides an underlying
ItemState
this method returns the status of that state,
otherwise it returns Status._UNDEFINED_
.getStatus
in interface HierarchyEntry
Status._UNDEFINED_
if this
entry has not been resolved yet.HierarchyEntry.getStatus()
public boolean isAvailable()
HierarchyEntry
true
if the referenced ItemState
is
available. That is, the referenced ItemState
has already
been resolved.isAvailable
in interface HierarchyEntry
true
if the ItemState
is available;
otherwise false
.HierarchyEntry.isAvailable()
public ItemState getItemState() throws ItemNotFoundException, RepositoryException
HierarchyEntry
has already been resolved before
(see HierarchyEntry.isAvailable()
), that ItemState
is returned.
Note however, that the validity of the State is not asserted.ItemState
or if the corresponding state has been removed in the mean time.getItemState
in interface HierarchyEntry
ItemState
.ItemNotFoundException
- if the ItemState
does not
exist anymore.RepositoryException
- If an error occurs while retrieving the
ItemState
.HierarchyEntry.getItemState()
public void setItemState(ItemState state)
setItemState
in interface HierarchyEntry
HierarchyEntry.setItemState(ItemState)
public void invalidate(boolean recursive)
ItemState
if available and if it
is not transiently modified. If the recursive
flag is true,
also invalidates the child entries recursively.HierarchyEntry.reload(boolean)
this method only sets the status of this item state to Status.INVALIDATED
and does not actually update it with the persistent
state in the repository.invalidate
in interface HierarchyEntry
HierarchyEntry.invalidate(boolean)
public void calculateStatus()
HierarchyEntry
ItemState
: any pending
changes to the underlying ItemState
are applied.calculateStatus
in interface HierarchyEntry
public void revert() throws RepositoryException
Status.EXISTING
.revert
in interface HierarchyEntry
RepositoryException
- if an error occurs.HierarchyEntry.revert()
public void reload(boolean recursive)
recursive
' the complete
hierarchy below this entry is reloaded as well.reload
in interface HierarchyEntry
HierarchyEntry.reload(boolean)
public void transientRemove() throws InvalidItemStateException, RepositoryException
Status.EXISTING_REMOVED
if
the item is existing in the persistent storage or Status.REMOVED
if the item has been transiently added before. In the latter case, the
corresponding HierarchyEntries can be removed as well from their parent.transientRemove
in interface HierarchyEntry
InvalidItemStateException
- if this entry has been removed in the
mean time.RepositoryException
- if an error occurs while removing any of the item
states e.g. an item state is not valid anymore.HierarchyEntry.transientRemove()
public void remove()
HierarchyEntry
HierarchyEntry
from its parent and sets the
status of the underlying ItemState to Status.REMOVED
or to
Status.STALE_DESTROYED
, respectively. If this entry is a
NodeEntry all descending ItemStates must get their status changed as well.remove
in interface HierarchyEntry
HierarchyEntry.remove()
public long getGeneration()
HierarchyEntry
HierarchyEntry
. This is used by the
ItemInfoCache
to determine whether an item info in the cache is up to date or not.
That is whether the generation of the item info in the cache is the same or more recent
as the required generation of this entry.getGeneration
in interface HierarchyEntry
Copyright © 2004–2024 The Apache Software Foundation. All rights reserved.