summaryrefslogtreecommitdiffstats
path: root/bindings/java/MediaSessionMgr.java
diff options
context:
space:
mode:
Diffstat (limited to 'bindings/java/MediaSessionMgr.java')
-rw-r--r--bindings/java/MediaSessionMgr.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/bindings/java/MediaSessionMgr.java b/bindings/java/MediaSessionMgr.java
new file mode 100644
index 0000000..346e64c
--- /dev/null
+++ b/bindings/java/MediaSessionMgr.java
@@ -0,0 +1,66 @@
+/* ----------------------------------------------------------------------------
+ * This file was automatically generated by SWIG (http://www.swig.org).
+ * Version 1.3.39
+ *
+ * Do not make changes to this file unless you know what you are doing--modify
+ * the SWIG interface file instead.
+ * ----------------------------------------------------------------------------- */
+
+package org.doubango.tinyWRAP;
+
+public class MediaSessionMgr {
+ private long swigCPtr;
+ protected boolean swigCMemOwn;
+
+ protected MediaSessionMgr(long cPtr, boolean cMemoryOwn) {
+ swigCMemOwn = cMemoryOwn;
+ swigCPtr = cPtr;
+ }
+
+ protected static long getCPtr(MediaSessionMgr obj) {
+ return (obj == null) ? 0 : obj.swigCPtr;
+ }
+
+ protected void finalize() {
+ delete();
+ }
+
+ public synchronized void delete() {
+ if(swigCPtr != 0 && swigCMemOwn) {
+ swigCMemOwn = false;
+ tinyWRAPJNI.delete_MediaSessionMgr(swigCPtr);
+ }
+ swigCPtr = 0;
+ }
+
+ public boolean sessionSetInt32(twrap_media_type_t media, String key, int value) {
+ return tinyWRAPJNI.MediaSessionMgr_sessionSetInt32(swigCPtr, this, media.swigValue(), key, value);
+ }
+
+ public boolean consumerSetInt32(twrap_media_type_t media, String key, int value) {
+ return tinyWRAPJNI.MediaSessionMgr_consumerSetInt32(swigCPtr, this, media.swigValue(), key, value);
+ }
+
+ public boolean consumerSetInt64(twrap_media_type_t media, String key, long value) {
+ return tinyWRAPJNI.MediaSessionMgr_consumerSetInt64(swigCPtr, this, media.swigValue(), key, value);
+ }
+
+ public boolean producerSetInt32(twrap_media_type_t media, String key, int value) {
+ return tinyWRAPJNI.MediaSessionMgr_producerSetInt32(swigCPtr, this, media.swigValue(), key, value);
+ }
+
+ public boolean producerSetInt64(twrap_media_type_t media, String key, long value) {
+ return tinyWRAPJNI.MediaSessionMgr_producerSetInt64(swigCPtr, this, media.swigValue(), key, value);
+ }
+
+ public ProxyPlugin findProxyPluginConsumer(twrap_media_type_t media) {
+ long cPtr = tinyWRAPJNI.MediaSessionMgr_findProxyPluginConsumer(swigCPtr, this, media.swigValue());
+ return (cPtr == 0) ? null : new ProxyPlugin(cPtr, false);
+ }
+
+ public ProxyPlugin findProxyPluginProducer(twrap_media_type_t media) {
+ long cPtr = tinyWRAPJNI.MediaSessionMgr_findProxyPluginProducer(swigCPtr, this, media.swigValue());
+ return (cPtr == 0) ? null : new ProxyPlugin(cPtr, false);
+ }
+
+}
OpenPOWER on IntegriCloud