Example usage for org.apache.http.testserver HttpServer getInetAddress

List of usage examples for org.apache.http.testserver HttpServer getInetAddress

Introduction

In this page you can find the example usage for org.apache.http.testserver HttpServer getInetAddress.

Prototype

public InetAddress getInetAddress() 

Source Link

Usage

From source file:org.apache.http.testserver.HttpServer.java

public InetAddress getInetAddress() {
    final org.apache.http.impl.bootstrap.HttpServer local = this.server;
    if (local != null) {
        return local.getInetAddress();
    } else {/*  w  ww  .  j a  v  a  2 s.c  o m*/
        throw new IllegalStateException("Server not running");
    }
}