Package br.com.mirabilis.http.jakarta

Examples of br.com.mirabilis.http.jakarta.HttpJakarta


   * @throws HttpException
   */
  public static HttpRequest build(HttpType type) throws HttpRequestException {

    if (type == null) {
      return new HttpJakarta();
    }

    switch (type) {
    case JAVA:
      return new HttpJava();

    case JAKARTA:
      return new HttpJakarta();

    default:
      throw new HttpRequestException("This type of request not exist");
    }
  }
View Full Code Here

TOP

Related Classes of br.com.mirabilis.http.jakarta.HttpJakarta

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.