Package org.apache.wink.common.http

Examples of org.apache.wink.common.http.HttpStatus


     */
    @Test
    public void testHttpStatus() {
        assertEquals(200, HttpStatus.OK.getCode());
        assertEquals(HttpStatus.valueOf(HttpStatus.OK.getCode()), HttpStatus.OK);
        HttpStatus new200 = HttpStatus.OK.duplicate("test");
        assertEquals(new200.getMessage(), "test");
        assertEquals(new200.getCode(), HttpStatus.OK.getCode());

    }
View Full Code Here

TOP

Related Classes of org.apache.wink.common.http.HttpStatus

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.