Revision: 3741
Author:   seba.wagner
Date:     Tue Apr 26 02:02:18 2011
Log:      [No log message]
http://code.google.com/p/openmeetings/source/detail?r=3741

Modified:
/trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/basic/SOAPLogin.java /trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/recording/RoomClient.java

=======================================
--- /trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/basic/SOAPLogin.java Thu Nov 4 04:04:47 2010 +++ /trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/basic/SOAPLogin.java Tue Apr 26 02:02:18 2011
@@ -23,6 +23,7 @@
        private String clientURL;
        private Long roomRecordingId;
        private String landingZone;
+       private Boolean allowRecording;

        /**
      *
@@ -192,5 +193,17 @@
        public void setLandingZone(String landingZone) {
                this.landingZone = landingZone;
        }
+
+       /**
+     * @hibernate.property
+     *  column="allow_recording"
+     *  type="boolean"
+     */
+       public Boolean getAllowRecording() {
+               return allowRecording;
+       }
+       public void setAllowRecording(Boolean allowRecording) {
+               this.allowRecording = allowRecording;
+       }

 }
=======================================
--- /trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/recording/RoomClient.java Thu Jul 15 06:41:16 2010 +++ /trunk/singlewebapp/src/app/org/openmeetings/app/hibernate/beans/recording/RoomClient.java Tue Apr 26 02:02:18 2011
@@ -150,6 +150,8 @@

     //Session values for handling the Interviwe Room Type
     private Integer interviewPodId = null;
+
+    private Boolean allowRecording = true;

        /*
         * Zombie Flag
@@ -693,5 +695,14 @@
        public void setCanRemote(Boolean canRemote) {
                this.canRemote = canRemote;
        }
+
+       public Boolean getAllowRecording() {
+               return allowRecording;
+       }
+
+       public void setAllowRecording(Boolean allowRecording) {
+               this.allowRecording = allowRecording;
+       }
+

 }

--
You received this message because you are subscribed to the Google Groups 
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/openmeetings-dev?hl=en.

Reply via email to