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

com.kaltura.client.services.KalturaUiConfService 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;
import java.util.List;

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

/**  UiConf service lets you create and manage your UIConfs for the various flash
  components  This service is used by the KMC-ApplicationStudio    */
@SuppressWarnings("serial")
public class KalturaUiConfService extends KalturaServiceBase {
    public KalturaUiConfService(KalturaClient client) {
        this.kalturaClient = client;
    }

	/**  UIConf Add action allows you to add a UIConf to Kaltura DB     */
    public KalturaUiConf add(KalturaUiConf uiConf) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("uiConf", uiConf);
        this.kalturaClient.queueServiceCall("uiconf", "add", kparams, KalturaUiConf.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConf.class, resultXmlElement);
    }

	/**  Update an existing UIConf     */
    public KalturaUiConf update(int id, KalturaUiConf uiConf) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("id", id);
        kparams.add("uiConf", uiConf);
        this.kalturaClient.queueServiceCall("uiconf", "update", kparams, KalturaUiConf.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConf.class, resultXmlElement);
    }

	/**  Retrieve a UIConf by id     */
    public KalturaUiConf get(int id) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("id", id);
        this.kalturaClient.queueServiceCall("uiconf", "get", kparams, KalturaUiConf.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConf.class, resultXmlElement);
    }

	/**  Delete an existing UIConf     */
    public void delete(int id) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("id", id);
        this.kalturaClient.queueServiceCall("uiconf", "delete", kparams);
        if (this.kalturaClient.isMultiRequest())
            return ;
        this.kalturaClient.doQueue();
    }

	/**  Clone an existing UIConf     */
    public KalturaUiConf clone(int id) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("id", id);
        this.kalturaClient.queueServiceCall("uiconf", "clone", kparams, KalturaUiConf.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConf.class, resultXmlElement);
    }

    public KalturaUiConfListResponse listTemplates() throws KalturaApiException {
        return this.listTemplates(null);
    }

    public KalturaUiConfListResponse listTemplates(KalturaUiConfFilter filter) throws KalturaApiException {
        return this.listTemplates(filter, null);
    }

	/**  retrieve a list of available template UIConfs     */
    public KalturaUiConfListResponse listTemplates(KalturaUiConfFilter filter, KalturaFilterPager pager) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("filter", filter);
        kparams.add("pager", pager);
        this.kalturaClient.queueServiceCall("uiconf", "listTemplates", kparams, KalturaUiConfListResponse.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConfListResponse.class, resultXmlElement);
    }

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

    public KalturaUiConfListResponse list(KalturaUiConfFilter filter) throws KalturaApiException {
        return this.list(filter, null);
    }

	/**  Retrieve a list of available UIConfs     */
    public KalturaUiConfListResponse list(KalturaUiConfFilter filter, KalturaFilterPager pager) throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        kparams.add("filter", filter);
        kparams.add("pager", pager);
        this.kalturaClient.queueServiceCall("uiconf", "list", kparams, KalturaUiConfListResponse.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseObject(KalturaUiConfListResponse.class, resultXmlElement);
    }

	/**  Retrieve a list of all available versions by object type     */
    public List getAvailableTypes() throws KalturaApiException {
        KalturaParams kparams = new KalturaParams();
        this.kalturaClient.queueServiceCall("uiconf", "getAvailableTypes", kparams, KalturaUiConfTypeInfo.class);
        if (this.kalturaClient.isMultiRequest())
            return null;
        Element resultXmlElement = this.kalturaClient.doQueue();
        return ParseUtils.parseArray(KalturaUiConfTypeInfo.class, resultXmlElement);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy