Examples of nodeMoved()


Examples of org.exist.storage.UpdateListener.nodeMoved()

        {
            for( int i = 0; i < listeners.size(); i++ ) {
                final UpdateListener listener = (UpdateListener)listeners.get( i );

                if( listener != null ) {
                    listener.nodeMoved( oldNodeId, newNode );
                }
            }
        }

View Full Code Here

Examples of org.modeshape.jcr.cache.change.RecordingChanges.nodeMoved()

                        // workspace. The node will be in a different workspace when it is linked or un-linked
                        // (e.g. shareable node or jcr:system).
                        String workspaceKey = node.getKey().getWorkspaceKey();
                        boolean isSameWorkspace = persistedCache.getWorkspaceKey().equalsIgnoreCase(workspaceKey);
                        if (isSameWorkspace) {
                            changes.nodeMoved(key, primaryType, mixinTypes, newParent, oldParentKey, newPath, oldPath, queryable);
                        }
                    } else if (additionalParents != null) {
                        // The node in another workspace has been linked to this workspace ...
                        translator.setParents(doc, null, null, additionalParents);
                    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.