Package com.volantis.map.agent.impl

Examples of com.volantis.map.agent.impl.DefaultRequestFactory


     * {@link DefaultRequestFactory#createRequestFromICSURI(java.net.URI)} }
     * method
     * @throws Exception if an error occurs
     */
    public void testCreateRequestFromICSURI() throws Exception {
        DefaultRequestFactory factory = new DefaultRequestFactory();
        Request request = factory.createRequestFromICSURI(new URI(
                "http://localhost:8080/map/ics/images/gp8/volantis.jpg"));
        assertTrue("expected a DefaultRequest instance",
                   request instanceof DefaultRequest);

    }
View Full Code Here

TOP

Related Classes of com.volantis.map.agent.impl.DefaultRequestFactory

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.