Package org.pentaho.platform.util.web

Examples of org.pentaho.platform.util.web.SimpleUrl


  public void testSimpleUrl() {

    String baseUrl = "http://localhost:8080/pentaho"; //$NON-NLS-1$
    SimpleUrlFactory urlFactory = new SimpleUrlFactory( "/testurl?" ); //$NON-NLS-1$
    urlFactory.getActionUrlBuilder();
    SimpleUrl url = new SimpleUrl( baseUrl );
    Assert.assertEquals( url.getUrl(), baseUrl );
    url.setParameter( "action", "doSomething" ); //$NON-NLS-1$  //$NON-NLS-2$
    Assert.assertEquals( url.getUrl(), baseUrl + "&action=doSomething" ); //$NON-NLS-1$

  }
View Full Code Here

TOP

Related Classes of org.pentaho.platform.util.web.SimpleUrl

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.