Package org.jbehave.core.io.rest

Examples of org.jbehave.core.io.rest.RESTClient


    public IndexFromConfluence() {
        this(null, null);
    }

    public IndexFromConfluence(String username, String password) {
        this(new RESTClient(Type.XML, username, password));
    }
View Full Code Here


  public IndexFromXWiki(String username, String password) {
    this(username, password, new ToLowerCase());
  }

  public IndexFromXWiki(String username, String password, ResourceNameResolver nameResolver) {
    super(new RESTClient(Type.JSON, username, password), nameResolver);
  }
View Full Code Here

    public LoadFromConfluence() {
        this(null, null);
    }

    public LoadFromConfluence(String username, String password) {
        this(new RESTClient(Type.XML, username, password));
    }
View Full Code Here

    public IndexFromRedmine(String username, String password) {
        this(username, password, new ToLowerCase());
    }

    public IndexFromRedmine(String username, String password, ResourceNameResolver nameResolver) {
        super(new RESTClient(Type.JSON, username, password), nameResolver);
    }
View Full Code Here

TOP

Related Classes of org.jbehave.core.io.rest.RESTClient

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.