Class: ConferenceCallService::ConferenceConstants

Inherits:
Object
  • Object
show all
Defined in:
lib/conference_call_service/conference_constants.rb

Constant Summary collapse

@@STATUS_ALL =

Conference Status.

0
@@STATUS_DETAIL =

Conference Status.

1
@@STATUS_PARTICIPANTS =

Conference Status.

2
@@STATUS_SCHEDULE =

Conference Status.

3
@@ACTION_MUTE =

Conference Participant Action constant.

1
@@ACTION_UNMUTE =

Conference Participant Action constant.

0
@@ACTION_REDIAL =

Conference Participant Action constant.

2
@@CONFERENCE_LIST_ALL =

Conference list constant.

0
@@CONFERENCE_LIST_ADHOC =

Conference list constant.

1
@@CONFERENCE_LIST_SCHEDULE =

Conference list constant.

2

Class Method Summary collapse

Class Method Details

.ACTION_MUTEObject



50
51
52
# File 'lib/conference_call_service/conference_constants.rb', line 50

def self.ACTION_MUTE
  @@ACTION_MUTE
end

.ACTION_UNMUTEObject



54
55
56
# File 'lib/conference_call_service/conference_constants.rb', line 54

def self.ACTION_UNMUTE    
  @@ACTION_UNMUTE
end

.CONFERENCE_LIST_ADHOCObject



62
63
64
# File 'lib/conference_call_service/conference_constants.rb', line 62

def self.CONFERENCE_LIST_ADHOC
  @@CONFERENCE_LIST_ADHOC
end

.CONFERENCE_LIST_ALLObject



58
59
60
# File 'lib/conference_call_service/conference_constants.rb', line 58

def self.CONFERENCE_LIST_ALL
  @@CONFERENCE_LIST_ALL
end

.CONFERENCE_LIST_SCHEDULEObject



66
67
68
# File 'lib/conference_call_service/conference_constants.rb', line 66

def self.CONFERENCE_LIST_SCHEDULE
  @@CONFERENCE_LIST_SCHEDULE
end

.STATUS_ALLObject



34
35
36
# File 'lib/conference_call_service/conference_constants.rb', line 34

def self.STATUS_ALL
  @@STATUS_ALL
end

.STATUS_DETAILObject



38
39
40
# File 'lib/conference_call_service/conference_constants.rb', line 38

def self.STATUS_DETAIL
  @@STATUS_DETAIL
end

.STATUS_PARTICIPANTSObject



42
43
44
# File 'lib/conference_call_service/conference_constants.rb', line 42

def self.STATUS_PARTICIPANTS
  @@STATUS_PARTICIPANTS
end

.STATUS_SCHEDULEObject



46
47
48
# File 'lib/conference_call_service/conference_constants.rb', line 46

def self.STATUS_SCHEDULE
  @@STATUS_SCHEDULE
end