Enum SystemVoicePortalScope
- java.lang.Object
-
- java.lang.Enum<SystemVoicePortalScope>
-
- co.ecg.alpaca.toolkit.generated.enums.SystemVoicePortalScope
-
- All Implemented Interfaces:
Serializable
,Comparable<SystemVoicePortalScope>
public enum SystemVoicePortalScope extends Enum<SystemVoicePortalScope>
Voice Portal Scope. When set to System, users can call any group voice portal hosted on the same Application Server as themselves rather than only the voice portal of their own group to initiate the login process. When set to Service Providers, the voice portal scope is configured within the Service Provider.- Author:
- AlpacaGenerator
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SERVICEPROVIDER
SYSTEM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SystemVoicePortalScope
get(String value)
static SystemVoicePortalScope[]
getArray(String[] values)
String
toString()
String
value()
static SystemVoicePortalScope
valueOf(String name)
Returns the enum constant of this type with the specified name.static SystemVoicePortalScope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVICEPROVIDER
public static final SystemVoicePortalScope SERVICEPROVIDER
-
SYSTEM
public static final SystemVoicePortalScope SYSTEM
-
-
Method Detail
-
values
public static SystemVoicePortalScope[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SystemVoicePortalScope c : SystemVoicePortalScope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SystemVoicePortalScope valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
toString
public String toString()
- Overrides:
toString
in classEnum<SystemVoicePortalScope>
-
get
public static SystemVoicePortalScope get(String value)
-
getArray
public static SystemVoicePortalScope[] getArray(String[] values)
-
-