Package org.apache.jackrabbit.oak.plugins.segment

Examples of org.apache.jackrabbit.oak.plugins.segment.SegmentPropertyState


    public static void filterNodeStates(Set<UUID> uuids, List<String> paths,
            SegmentNodeState state, String path) {
        Set<String> localPaths = new TreeSet<String>();
        for (PropertyState ps : state.getProperties()) {
            if (ps instanceof SegmentPropertyState) {
                SegmentPropertyState sps = (SegmentPropertyState) ps;
                RecordId recordId = sps.getRecordId();
                SegmentId sid = recordId.getSegmentId();
                UUID id = new UUID(sid.getMostSignificantBits(),
                        sid.getLeastSignificantBits());
                if (uuids.contains(id)) {
                    localPaths.add(path + "@" + ps + " [SegmentPropertyState@"
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.segment.SegmentPropertyState

Copyright © 2018 www.massapicom. 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.