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

org.kurento.client.OfferOptions Maven / Gradle / Ivy

Go to download

Kurento Client The Kurento Client project allows server applications to control media server resources.

There is a newer version: 7.1.0
Show newest version
/**
 * This file is generated with Kurento ktool-rom-processor.
 * Please don't edit. Changes should go to kms-interface-rom and
 * ktool-rom-processor templates.
 */
package org.kurento.client;

/**
 *
 * Used to customize the offer created by SdpEndpoint.generateOffer.
 *
 **/
@org.kurento.client.internal.ModuleName ("kurento")
public class OfferOptions  {

/**
 *
 * Whether or not to offer to the remote peer the opportunity to send audio.
 *
 **/
    private Boolean offerToReceiveAudio;
/**
 *
 * Whether or not to offer to the remote peer the opportunity to send video.
 *
 **/
    private Boolean offerToReceiveVideo;


/**
 *
 * Create a OfferOptions
 *
 **/
    public OfferOptions() {

	super();

    }

/**
 *
 * get Whether or not to offer to the remote peer the opportunity to send audio.
 *
 **/
    public Boolean getOfferToReceiveAudio(){
    	return offerToReceiveAudio;
    }

/**
 *
 * set Whether or not to offer to the remote peer the opportunity to send audio.
 *
 **/
    public void setOfferToReceiveAudio(Boolean offerToReceiveAudio){
    	this.offerToReceiveAudio = offerToReceiveAudio;
    }

/**
 *
 * get Whether or not to offer to the remote peer the opportunity to send video.
 *
 **/
    public Boolean getOfferToReceiveVideo(){
    	return offerToReceiveVideo;
    }

/**
 *
 * set Whether or not to offer to the remote peer the opportunity to send video.
 *
 **/
    public void setOfferToReceiveVideo(Boolean offerToReceiveVideo){
    	this.offerToReceiveVideo = offerToReceiveVideo;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy