Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
MobileRTCDialInCountry.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
3import java.util.ArrayList;
4
6
7 private String hash;
8
9 private boolean includedTollfree;
10
11 private ArrayList<String> selectedCountries;
12
13 private ArrayList<String> allCountries;
14
23 public MobileRTCDialInCountry(String hash, boolean includedTollfree, ArrayList<String> selectedCountries, ArrayList<String> allCountries) {
24 this.hash = hash;
25 this.includedTollfree = includedTollfree;
26 this.selectedCountries = selectedCountries;
27 this.allCountries = allCountries;
28 }
29
31
32 }
33
38 public String getHash() {
39 return hash;
40 }
41
46 public void setHash(String hash) {
47 this.hash = hash;
48 }
49
50
55 public boolean isIncludedTollFree() {
56 return includedTollfree;
57 }
58
64 this.includedTollfree = includedTollfree;
65 }
66
71 public ArrayList<String> getSelectedCountries() {
72 return selectedCountries;
73 }
74
79 public void setSelectedCountries(ArrayList<String> selectedCountries) {
80 this.selectedCountries = selectedCountries;
81 }
82
87 public ArrayList<String> getAllCountries() {
88 return allCountries;
89 }
90
95 public void setAllCountries(ArrayList<String> allCountries) {
96 this.allCountries = allCountries;
97 }
98}
void setAllCountries(ArrayList< String > allCountries)
Set all available countries on web server.
void setHash(String hash)
Set hash algorithm.
void setIncludedTollFree(boolean includedTollfree)
Set the incoming call numbers including toll-free number.
ArrayList< String > getAllCountries()
Get all available countries configured in web server.
void setSelectedCountries(ArrayList< String > selectedCountries)
Set the countries selected by user.
ArrayList< String > getSelectedCountries()
Get the countries selected by user.
MobileRTCDialInCountry(String hash, boolean includedTollfree, ArrayList< String > selectedCountries, ArrayList< String > allCountries)
Create an instance for the MobileRTCDialinCountry.
boolean isIncludedTollFree()
Query if the toll-free number is included in the list of dialing in.