Examples of AnalyticsEvent


Examples of com.google.api.explorer.client.analytics.AnalyticsManager.AnalyticsEvent

   */
  private AnalyticsEvent classifyResponse(ApiResponse response) {
    int statusCode = response.getStatus();
    int statusCodeClass = statusCode / 100;

    AnalyticsEvent responseType;

    if (statusCode == 401) {
      responseType = AnalyticsEvent.RESPONSE_FAILED_AUTH;
    } else if (statusCodeClass == 4) {
      responseType = AnalyticsEvent.RESPONSE_FAILED_CLIENT;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.