Hello Team,
I would like to understand more on this method, For me documentation is not enough.
--- Indicates wether this element supports release(boolean) or not.
de.espirit.firstspirit.access.store.IDProvider
If some has some more information please share me.
for (ReferenceEntry entry : page.getIncomingReferences()) {
if (entry.getType() == ReferenceEntry.SITE_STORE_REFERENCE && entry.getReferencedElement() instanceof PageRef) {
PageRef pageRef = (PageRef) entry.getReferencedElement();
if (pageRef.getStore().isReleaseSupported()){
....
........
...........
}
}
}
In the above code pageRef.getStore().isReleaseSupported() when will this condition become true? For me it always returns false in the code implementation.
But in Bean-shell test for pageRef it shows true.
More about current store and release store information required.
Thank you,
Regards,
Siva