Package org.apache.wink.common.internal

Examples of org.apache.wink.common.internal.PathSegmentImpl.clone()


        testPathSegmentWithTwoMatrixValues(segment);
    }

    public void testClone() {
        PathSegmentImpl segment = new PathSegmentImpl(PATH_WITH_TWO_MATRIX_VALUES);
        testPathSegmentWithTwoMatrixValues(segment.clone());
    }

    private void testPathSegmentWithTwoMatrixValues(PathSegment segment) {
        assertEquals("matrix", segment.getPath());
        MultivaluedMap<String, String> matrixParameters = segment.getMatrixParameters();
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.