Package org.apache.jackrabbit.oak.plugins.memory

Examples of org.apache.jackrabbit.oak.plugins.memory.MemoryNodeState


    @Test
    public void testNodeChanges() {
        JsopDiff diff;
        NodeState before = MemoryNodeState.EMPTY_NODE;
        NodeState after = new MemoryNodeState(
                ImmutableMap.<String, PropertyState>of(
                        "a", SinglePropertyState.create("a", 1)),
                ImmutableMap.of(
                        "x", MemoryNodeState.EMPTY_NODE));
View Full Code Here


    @Test
    public void testNodeChanges() {
        JsopDiff diff;
        NodeState before = MemoryNodeState.EMPTY_NODE;
        NodeState after = new MemoryNodeState(
                ImmutableMap.<String, PropertyState>of(
                        "a", SinglePropertyState.create("a", 1)),
                ImmutableMap.of(
                        "x", MemoryNodeState.EMPTY_NODE));
View Full Code Here

    @Test
    public void testNodeChanges() {
        JsopDiff diff;
        NodeState before = MemoryNodeState.EMPTY_NODE;
        NodeState after = new MemoryNodeState(
                ImmutableMap.<String, PropertyState>of(
                        "a", LongPropertyState.createLongProperty("a", 1L)),
                ImmutableMap.of(
                        "x", MemoryNodeState.EMPTY_NODE));
View Full Code Here

TOP

Related Classes of org.apache.jackrabbit.oak.plugins.memory.MemoryNodeState

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.