Package org.cloudfoundry.client.lib

Examples of org.cloudfoundry.client.lib.RestLogEntry


    }
    return results;
  }

  public void addLogMessage(HttpMethod method, URI url, String status, HttpStatus httpStatus, String message) {
    RestLogEntry logEntry = new RestLogEntry(method, url, status, httpStatus, message);
    for (RestLogCallback callback : listeners) {
      callback.onNewLogEntry(logEntry);
    }
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.client.lib.RestLogEntry

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.