Interface BedeworkConnConfMBean
-
- All Superinterfaces:
org.bedework.util.jmx.BaseMBean,org.bedework.util.jmx.ConfBaseMBean,NoteConnConfMBean
- All Known Implementing Classes:
BedeworkConnConf
public interface BedeworkConnConfMBean extends NoteConnConfMBean
Configure a connector for the Bedework notification service- Author:
- douglm
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetKeepAliveInterval()KeepAliveInterval - secondsintgetRetryInterval()retryInterval - secondsStringgetSystemNotificationHref()StringgetSystemUrl()StringgetToken()voidsetKeepAliveInterval(int val)KeepAliveInterval - secondsvoidsetRetryInterval(int val)retryInterval - secondsvoidsetSystemNotificationHref(String val)voidsetSystemUrl(String val)voidsetToken(String val)-
Methods inherited from interface org.bedework.util.jmx.BaseMBean
getServiceName, isRunning, start, stop
-
Methods inherited from interface org.bedework.util.jmx.ConfBaseMBean
getConfigName, saveConfig, setConfigName, setStatus
-
Methods inherited from interface org.bedework.notifier.service.NoteConnConfMBean
getConnectorClassName, getMbeanClassName, getReadOnly, getStatus, getTrustLastmod, setConnectorClassName, setMbeanClassName, setReadOnly, setTrustLastmod
-
-
-
-
Method Detail
-
setSystemNotificationHref
void setSystemNotificationHref(String val)
- Parameters:
val- system notification principal
-
getSystemNotificationHref
String getSystemNotificationHref()
- Returns:
- system notification principal
-
setSystemUrl
void setSystemUrl(String val)
- Parameters:
val- system url
-
getSystemUrl
String getSystemUrl()
- Returns:
- system notification principal
-
setToken
void setToken(String val)
- Parameters:
val- token for authentication
-
getToken
String getToken()
- Returns:
- token
-
setRetryInterval
void setRetryInterval(int val)
retryInterval - seconds- Parameters:
val- int seconds
-
getRetryInterval
int getRetryInterval()
retryInterval - seconds- Returns:
- int seconds
-
setKeepAliveInterval
void setKeepAliveInterval(int val)
KeepAliveInterval - seconds- Parameters:
val- int seconds
-
getKeepAliveInterval
int getKeepAliveInterval()
KeepAliveInterval - seconds- Returns:
- int seconds
-
-