Class AvayaMessagingConfiguration
- java.lang.Object
-
- com.avaya.clientservices.provider.avayamessaging.AvayaMessagingConfiguration
-
public class AvayaMessagingConfiguration extends java.lang.ObjectUser Configuration information for Avaya Messaging provider. This class provides the configuration data that allows a connection and access to be made to Avaya Messaging server.
-
-
Constructor Summary
Constructors Constructor Description AvayaMessagingConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CredentialProvidergetCredentialProvider()ServerInfogetServerInfo()booleanisEnabled()Is the Avaya Messaging provider enabled?voidsetCredentialProvider(CredentialProvider credentialProvider)Set the CredentialProvider value representing the object that provides the credentials.voidsetEnabled(boolean enabled)Enable or disable the Avaya Messaging provider.voidsetServerInfo(ServerInfo serverInfo)Set the ServerInfo value indicating Avaya Messaging server to connect to.
-
-
-
Method Detail
-
isEnabled
public boolean isEnabled()
Is the Avaya Messaging provider enabled?- Returns:
- True indicating Avaya Messaging provider is enabled, otherwise false.
-
setEnabled
public void setEnabled(boolean enabled)
Enable or disable the Avaya Messaging provider.- Parameters:
enabled- The Boolean value indicating whether Avaya Messaging provider is enabled.
-
getServerInfo
public ServerInfo getServerInfo()
- Returns:
- ServerInfo value indicating Avaya Messaging server to connect to.
-
setServerInfo
public void setServerInfo(ServerInfo serverInfo)
Set the ServerInfo value indicating Avaya Messaging server to connect to.- Parameters:
serverInfo- ServerInfo value indicating Avaya Messaging server to connect to.
-
getCredentialProvider
public CredentialProvider getCredentialProvider()
- Returns:
- a CredentialProvider value representing the object that provides the credentials.
-
setCredentialProvider
public void setCredentialProvider(CredentialProvider credentialProvider)
Set the CredentialProvider value representing the object that provides the credentials.- Parameters:
credentialProvider- CredentialProvider value representing the object that provides the credentials.
-
-