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

com.kaltura.client.services.KalturaEdgeServerService 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

The newest version!
// ===================================================================================================
//                           _  __     _ _
//                          | |/ /__ _| | |_ _  _ _ _ __ _
//                          | ' .
//
// @ignore
// ===================================================================================================
package com.kaltura.client.services;

import com.kaltura.client.KalturaClient;
import com.kaltura.client.KalturaServiceBase;
import com.kaltura.client.types.*;
import org.w3c.dom.Element;
import com.kaltura.client.utils.ParseUtils;
import com.kaltura.client.KalturaParams;
import com.kaltura.client.KalturaApiException;

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

/**  Edge Server service    */
@SuppressWarnings("serial")
public class KalturaEdgeServerService extends KalturaServiceBase {
    public KalturaEdgeServerService(KalturaClient client) {
        this.kalturaClient = client;
    }

	/**  Adds a edge server to the Kaltura DB.     */
    public KalturaEdgeServer add(KalturaEdgeServer edgeServer) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("edgeServer", edgeServer);
        this.kalturaClient.queueServiceCall("edgeserver", "add", kparams, KalturaEdgeServer.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaEdgeServer.class, resultXmlElement);
    }

	/**  Get edge server by id     */
    public KalturaEdgeServer get(int edgeServerId) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("edgeServerId", edgeServerId);
        this.kalturaClient.queueServiceCall("edgeserver", "get", kparams, KalturaEdgeServer.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaEdgeServer.class, resultXmlElement);
    }

	/**  Update edge server by id      */
    public KalturaEdgeServer update(int edgeServerId, KalturaEdgeServer edgeServer) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("edgeServerId", edgeServerId);
        kparams.add("edgeServer", edgeServer);
        this.kalturaClient.queueServiceCall("edgeserver", "update", kparams, KalturaEdgeServer.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaEdgeServer.class, resultXmlElement);
    }

	/**  delete edge server by id     */
    public void delete(String edgeServerId) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("edgeServerId", edgeServerId);
        this.kalturaClient.queueServiceCall("edgeserver", "delete", kparams);
        if (this.kalturaClient.isMultiRequest())
            return ;
        this.kalturaClient.doQueue();
    }

    public KalturaEdgeServerListResponse list() throws KalturaApiException {
        return this.list(null);
    }

    public KalturaEdgeServerListResponse list(KalturaEdgeServerFilter filter) throws KalturaApiException {
        return this.list(filter, null);
    }

    public KalturaEdgeServerListResponse list(KalturaEdgeServerFilter filter, KalturaFilterPager pager) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("filter", filter);
        kparams.add("pager", pager);
        this.kalturaClient.queueServiceCall("edgeserver", "list", kparams, KalturaEdgeServerListResponse.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaEdgeServerListResponse.class, resultXmlElement);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy