summaryrefslogtreecommitdiffstats
path: root/branches/1.0/bindings/java/MediaSessionMgr.java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/1.0/bindings/java/MediaSessionMgr.java')
-rw-r--r--branches/1.0/bindings/java/MediaSessionMgr.java66
1 files changed, 0 insertions, 66 deletions
diff --git a/branches/1.0/bindings/java/MediaSessionMgr.java b/branches/1.0/bindings/java/MediaSessionMgr.java
deleted file mode 100644
index 346e64c..0000000
--- a/branches/1.0/bindings/java/MediaSessionMgr.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/* ----------------------------------------------------------------------------
- * 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