Class FeatureParameters
- java.lang.Object
-
- com.avaya.clientservices.call.feature.FeatureParameters
-
public class FeatureParameters extends java.lang.ObjectThis is a union of the parameters of the FNU features. The caller should know which parameters to populate for a specific feature.
-
-
Constructor Summary
Constructors Constructor Description FeatureParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetDialCode()FeatureTypegetFeatureType()intgetGroupNumber()intgetHuntGroupNumber()Deprecated.THIS METHOD WILL BE REMOVED.java.lang.StringgetOwnerExtension()voidsetDialCode(java.lang.String dialCode)The Dial Code associated with the auto-intercom feature.voidsetFeatureType(FeatureType feature)The feature type associated with the feature.voidsetGroupNumber(int groupNumber)The Group Number associated with the hunt-group-busy-position/auto-intercom feature.voidsetHuntGroupNumber(int huntGroupNumber)Deprecated.THIS METHOD WILL BE REMOVED.voidsetOwnerExtension(java.lang.String ownerExtension)The owner extension associated with this feature.
-
-
-
Method Detail
-
setFeatureType
public void setFeatureType(FeatureType feature)
The feature type associated with the feature.- Parameters:
feature- The feature type associated with the feature.
-
getFeatureType
public FeatureType getFeatureType()
- Returns:
- The feature type associated with the feature.
-
setOwnerExtension
public void setOwnerExtension(java.lang.String ownerExtension)
The owner extension associated with this feature. Populate if targeted feature's owner is different from the local user's extension.- Parameters:
ownerExtension- The feature owner extension.
-
getOwnerExtension
public java.lang.String getOwnerExtension()
- Returns:
- The owner extension associated with the feature.
-
setHuntGroupNumber
@Deprecated public void setHuntGroupNumber(int huntGroupNumber)
Deprecated.THIS METHOD WILL BE REMOVED. UsesetGroupNumber(int)instead.The Hunt Group Number associated with the hunt-group-busy-position feature Populate if the feature is Hunt Group Busy Position feature.- Parameters:
huntGroupNumber- The hunt group number associated with feature.
-
getHuntGroupNumber
@Deprecated public int getHuntGroupNumber()
Deprecated.THIS METHOD WILL BE REMOVED. UsegetGroupNumber()instead.- Returns:
- The hunt group number associated with the feature.
-
setGroupNumber
public void setGroupNumber(int groupNumber)
The Group Number associated with the hunt-group-busy-position/auto-intercom feature. Populate if the feature is Hunt Group Busy Position or Auto Intercom feature.- Parameters:
groupNumber- The group number associated with feature.
-
getGroupNumber
public int getGroupNumber()
- Returns:
- The group number associated with the feature.
-
setDialCode
public void setDialCode(java.lang.String dialCode)
The Dial Code associated with the auto-intercom feature. Populate if the feature is Auto Intercom feature.- Parameters:
dialCode- The dial code associated with feature.
-
getDialCode
public java.lang.String getDialCode()
- Returns:
- The dial code associated with the feature.
-
-