Ejemplo n.º 1
0
 def __init__(self, bookingType, conf):
     CSBookingBase.__init__(self, bookingType, conf)
     self._pin = None
     self._owner = None
     self._ownerVidyoAccount = None
     self._roomId = None
     self._extension = None
     self._url = None
     self._created = False
     self._checksDone = []
Ejemplo n.º 2
0
 def __init__(self, bookingType, conf):
     CSBookingBase.__init__(self, bookingType, conf)
     self._pin = None
     self._moderatorPin = None
     self._owner = None
     self._ownerVidyoAccount = None
     self._roomId = None
     self._extension = None
     self._url = None
     self._created = False
     self._checksDone = []
Ejemplo n.º 3
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
     self._bookingParams = {
         "talks" : None,
         "talkSelectionComments": None,
         "talkSelection": [],
         "permission": None,
         "lectureOptions": [],
         "lectureStyle": None,
         "postingUrgency": None,
         "numRemoteViewers": 0,
         "numAttendees": 0,
         "recordingPurpose": [],
         "intendedAudience" : [],
         "subjectMatter": [],
         "otherComments": None
     }
Ejemplo n.º 4
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
     self._bookingParams = {
         "talks": None,
         "talkSelectionComments": None,
         "talkSelection": [],
         "permission": None,
         "lectureOptions": [],
         "lectureStyle": None,
         "postingUrgency": None,
         "numRemoteViewers": 0,
         "numAttendees": 0,
         "recordingPurpose": [],
         "intendedAudience": [],
         "subjectMatter": [],
         "otherComments": None
     }
Ejemplo n.º 5
0
    def __init__(self, type, conf):
        CSBookingBase.__init__(self, type, conf)
        self._participants = {}
        self._participantIdCounter = Counter(1)
        self._accessPassword = None
        self._url = None # The URL to join the meeting
        self._startURL = None  #The URL the admin can visit to start the meeting and be automatically logged in
        self._webExKey = None
        self._phoneNum = None
        self._phoneNumToll = None
        self._duration = None
        self._permissionToStart = True

        self._created = False
        self._error = False
        self._errorMessage = None
        self._errorDetails = None

        self._lastCheck = nowutc()
        self._checksDone = []
        self._bookingChangesHistory = []
        self._latestChanges = []
        self._webExPass = ""
Ejemplo n.º 6
0
    def __init__(self, type, conf):
        CSBookingBase.__init__(self, type, conf)
        self._participants = {}
        self._participantIdCounter = Counter(1)
        self._accessPassword = None
        self._url = None  # The URL to join the meeting
        self._startURL = None  #The URL the admin can visit to start the meeting and be automatically logged in
        self._webExKey = None
        self._phoneNum = None
        self._phoneNumToll = None
        self._duration = None
        self._permissionToStart = True

        self._created = False
        self._error = False
        self._errorMessage = None
        self._errorDetails = None

        self._lastCheck = nowutc()
        self._checksDone = []
        self._bookingChangesHistory = []
        self._latestChanges = []
        self._webExPass = ""
Ejemplo n.º 7
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
Ejemplo n.º 8
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
Ejemplo n.º 9
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
     self._bookingParams = {}
Ejemplo n.º 10
0
 def __init__(self, type, conf):
     CSBookingBase.__init__(self, type, conf)
     self._bookingParams = {}