Package us.zoom.sdk

Class MobileRTCDialinCountry


  • public class MobileRTCDialinCountry
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      MobileRTCDialinCountry()  
      MobileRTCDialinCountry​(java.lang.String hash, boolean includedTollfree, java.util.ArrayList<java.lang.String> selectedCountries, java.util.ArrayList<java.lang.String> allCountries)
      Create an instance for the MobileRTCDialinCountry.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.ArrayList<java.lang.String> getAllCountries()
      Get all available countries configured in web server.
      java.lang.String getHash()
      Get hash algorithm.
      java.util.ArrayList<java.lang.String> getSelectedCountries()
      Get the countries selected by user.
      boolean isIncludedTollfree()
      Query if the toll-free number is included in the list of dialing in.
      void setAllCountries​(java.util.ArrayList<java.lang.String> allCountries)
      Set all available countries on web server.
      void setHash​(java.lang.String hash)
      Set hash algorithm
      void setIncludedTollfree​(boolean includedTollfree)
      Set the incoming call numbers including toll-free number.
      void setSelectedCountries​(java.util.ArrayList<java.lang.String> selectedCountries)
      Set the countries selected by user.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MobileRTCDialinCountry

        public MobileRTCDialinCountry​(java.lang.String hash,
                                      boolean includedTollfree,
                                      java.util.ArrayList<java.lang.String> selectedCountries,
                                      java.util.ArrayList<java.lang.String> allCountries)
        Create an instance for the MobileRTCDialinCountry.
        Parameters:
        hash - Hash algorithm
        includedTollfree - Specify the incoming call phone numbers including toll-free number.
        selectedCountries - The countries selected by user.
        allCountries - All available countries configured in web server.
      • MobileRTCDialinCountry

        public MobileRTCDialinCountry()
    • Method Detail

      • getHash

        public java.lang.String getHash()
        Get hash algorithm.
        Returns:
        Hash algorithm
      • setHash

        public void setHash​(java.lang.String hash)
        Set hash algorithm
        Parameters:
        hash - Hash algorithm
      • isIncludedTollfree

        public boolean isIncludedTollfree()
        Query if the toll-free number is included in the list of dialing in.
        Returns:
        If the function succeeds, it will return True, otherwise failed.
      • setIncludedTollfree

        public void setIncludedTollfree​(boolean includedTollfree)
        Set the incoming call numbers including toll-free number.
        Parameters:
        includedTollfree - TRUE means including toll-free number, otherwise failed.
      • getSelectedCountries

        public java.util.ArrayList<java.lang.String> getSelectedCountries()
        Get the countries selected by user.
        Returns:
        The countries.
      • setSelectedCountries

        public void setSelectedCountries​(java.util.ArrayList<java.lang.String> selectedCountries)
        Set the countries selected by user.
        Parameters:
        selectedCountries - The countries.
      • getAllCountries

        public java.util.ArrayList<java.lang.String> getAllCountries()
        Get all available countries configured in web server.
        Returns:
        The available countries.
      • setAllCountries

        public void setAllCountries​(java.util.ArrayList<java.lang.String> allCountries)
        Set all available countries on web server.
        Parameters:
        allCountries - All available countries.