All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kaltura.client.services.StatsService Maven / Gradle / Ivy

Go to download

KalturaClient is a library of Java classes that can be used to interact with the Kaltura REST API. More information about the REST API can be found at http://corp.kaltura.com/Products/Kaltura-API Many of the Java classes in this library are auto-generated from a schema that defines the objects that are used to interect with the API. The current schema can be found at http://www.kaltura.com/api_v3/api_schema.php

There is a newer version: 19.3.0
Show newest version
// ===================================================================================================
//                           _  __     _ _
//                          | |/ /__ _| | |_ _  _ _ _ __ _
//                          | ' .
//
// @ignore
// ===================================================================================================
package com.kaltura.client.services;

import com.kaltura.client.types.CEError;
import com.kaltura.client.types.StatsEvent;
import com.kaltura.client.types.StatsKmcEvent;
import com.kaltura.client.utils.request.NullRequestBuilder;
import com.kaltura.client.utils.request.RequestBuilder;

/**
 * This class was generated using generate.php
 * against an XML schema provided by Kaltura.
 * 
 * MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
 */

/**
 * Stats Service
 * 
 * @param event 
 * @param kmcEvent 
 * @param data 
 * @param errorCode 
 * @param errorMessage 
 * @param kalturaCEError 
 */
public class StatsService {
	
	public static class CollectStatsBuilder extends RequestBuilder {
		
		public CollectStatsBuilder(StatsEvent event) {
			super(Boolean.class, "stats", "collect");
			params.add("event", event);
		}
	}

	/**
	 * Will write to the event log a single line representing the event   client
	  version - will help interprete the line structure. different client versions
	  might have slightly different data/data formats in the line event_id - number is
	  the row number in yuval's excel datetime - same format as MySql's datetime - can
	  change and should reflect the time zone session id - can be some big random
	  number or guid partner id entry id unique viewer widget id ui_conf id uid - the
	  puser id as set by the ppartner current point - in milliseconds duration -
	  milliseconds user ip process duration - in milliseconds control id seek new
	  point referrer       KalturaStatsEvent $event
	 * 
	 * @param event 
	 */
    public static CollectStatsBuilder collect(StatsEvent event)  {
		return new CollectStatsBuilder(event);
	}
	
	public static class KmcCollectStatsBuilder extends NullRequestBuilder {
		
		public KmcCollectStatsBuilder(StatsKmcEvent kmcEvent) {
			super("stats", "kmcCollect");
			params.add("kmcEvent", kmcEvent);
		}
	}

	/**
	 * Will collect the kmcEvent sent form the KMC client   // this will actually be an
	  empty function because all events will be sent using GET and will anyway be
	  logged in the apache log
	 * 
	 * @param kmcEvent 
	 */
    public static KmcCollectStatsBuilder kmcCollect(StatsKmcEvent kmcEvent)  {
		return new KmcCollectStatsBuilder(kmcEvent);
	}
	
	public static class ReportDeviceCapabilitiesStatsBuilder extends NullRequestBuilder {
		
		public ReportDeviceCapabilitiesStatsBuilder(String data) {
			super("stats", "reportDeviceCapabilities");
			params.add("data", data);
		}
		
		public void data(String multirequestToken) {
			params.add("data", multirequestToken);
		}
	}

	/**
	 * Use this action to report device capabilities to the kaltura server.
	 * 
	 * @param data 
	 */
    public static ReportDeviceCapabilitiesStatsBuilder reportDeviceCapabilities(String data)  {
		return new ReportDeviceCapabilitiesStatsBuilder(data);
	}
	
	public static class ReportErrorStatsBuilder extends NullRequestBuilder {
		
		public ReportErrorStatsBuilder(String errorCode, String errorMessage) {
			super("stats", "reportError");
			params.add("errorCode", errorCode);
			params.add("errorMessage", errorMessage);
		}
		
		public void errorCode(String multirequestToken) {
			params.add("errorCode", multirequestToken);
		}
		
		public void errorMessage(String multirequestToken) {
			params.add("errorMessage", multirequestToken);
		}
	}

	/**
	 * Use this action to report errors to the kaltura server.
	 * 
	 * @param errorCode 
	 * @param errorMessage 
	 */
    public static ReportErrorStatsBuilder reportError(String errorCode, String errorMessage)  {
		return new ReportErrorStatsBuilder(errorCode, errorMessage);
	}
	
	public static class ReportKceErrorStatsBuilder extends RequestBuilder {
		
		public ReportKceErrorStatsBuilder(CEError kalturaCEError) {
			super(CEError.class, "stats", "reportKceError");
			params.add("kalturaCEError", kalturaCEError);
		}
	}

    public static ReportKceErrorStatsBuilder reportKceError(CEError kalturaCEError)  {
		return new ReportKceErrorStatsBuilder(kalturaCEError);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy