Package org.apache.uima.resource
Interface MessagingSpecifier
-
- All Superinterfaces:
java.lang.Cloneable,MetaDataObject,ResourceServiceSpecifier,ResourceSpecifier,java.io.Serializable,XMLizable
- All Known Subinterfaces:
JMSMessagingSpecifier,MailMessagingSpecifier,MQMessagingSpecifier
public interface MessagingSpecifier extends ResourceServiceSpecifier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetHostAddress()Returns the hostAddress.java.lang.StringgetHostMessagingServer()Returns the hostMessagingServer.java.lang.StringgetHostPassword()Returns the hostPassword.java.lang.StringgetHostUser()Returns the hostUser.java.lang.StringgetMessagingType()Returns the messagingType.java.lang.StringgetTargetAddress()Returns the targetAddress.java.lang.StringgetTargetMessagingServer()Returns the targetMessagingServer.java.lang.StringgetTargetPassword()Returns the targetPassword.java.lang.StringgetTargetUser()Returns the targetUser.java.lang.IntegergetTimeout()Gets the timeout period in milliseconds.voidsetHostAddress(java.lang.String hostAddress)Sets the hostAddress.voidsetHostMessagingServer(java.lang.String hostMessagingServer)Sets the hostMessagingServer.voidsetHostPassword(java.lang.String hostPassword)Sets the hostPassword.voidsetHostUser(java.lang.String hostUser)Sets the hostUser.voidsetMessagingType(java.lang.String messagingType)Sets the messagingType.voidsetTargetAddress(java.lang.String targetAddress)Sets the targetAddress.voidsetTargetMessagingServer(java.lang.String targetMessagingServer)Sets the targetMessagingServer.voidsetTargetPassword(java.lang.String targetPassword)Sets the targetPassword.voidsetTargetUser(java.lang.String targetUser)Sets the targetUser.voidsetTimeout(java.lang.Integer aTimeout)Sets the timeout period in milliseconds.-
Methods inherited from interface org.apache.uima.resource.metadata.MetaDataObject
clone, equals, getAttributeValue, getSourceUrl, getSourceUrlString, isModifiable, listAttributes, setAttributeValue, setSourceUrl
-
Methods inherited from interface org.apache.uima.util.XMLizable
buildFromXMLElement, buildFromXMLElement, toXML, toXML, toXML, toXML
-
-
-
-
Method Detail
-
getHostAddress
java.lang.String getHostAddress()
Returns the hostAddress.- Returns:
- String
-
getHostMessagingServer
java.lang.String getHostMessagingServer()
Returns the hostMessagingServer.- Returns:
- String
-
getHostPassword
java.lang.String getHostPassword()
Returns the hostPassword.- Returns:
- String
-
getHostUser
java.lang.String getHostUser()
Returns the hostUser.- Returns:
- String
-
getMessagingType
java.lang.String getMessagingType()
Returns the messagingType.- Returns:
- String
-
getTargetAddress
java.lang.String getTargetAddress()
Returns the targetAddress.- Returns:
- String
-
getTargetMessagingServer
java.lang.String getTargetMessagingServer()
Returns the targetMessagingServer.- Returns:
- String
-
getTargetPassword
java.lang.String getTargetPassword()
Returns the targetPassword.- Returns:
- String
-
getTargetUser
java.lang.String getTargetUser()
Returns the targetUser.- Returns:
- String
-
setHostAddress
void setHostAddress(java.lang.String hostAddress)
Sets the hostAddress.- Parameters:
hostAddress- The hostAddress to set
-
setHostMessagingServer
void setHostMessagingServer(java.lang.String hostMessagingServer)
Sets the hostMessagingServer.- Parameters:
hostMessagingServer- The hostMessagingServer to set
-
setHostPassword
void setHostPassword(java.lang.String hostPassword)
Sets the hostPassword.- Parameters:
hostPassword- The hostPassword to set
-
setHostUser
void setHostUser(java.lang.String hostUser)
Sets the hostUser.- Parameters:
hostUser- The hostUser to set
-
setMessagingType
void setMessagingType(java.lang.String messagingType)
Sets the messagingType.- Parameters:
messagingType- The messagingType to set
-
setTargetAddress
void setTargetAddress(java.lang.String targetAddress)
Sets the targetAddress.- Parameters:
targetAddress- The targetAddress to set
-
setTargetMessagingServer
void setTargetMessagingServer(java.lang.String targetMessagingServer)
Sets the targetMessagingServer.- Parameters:
targetMessagingServer- The targetMessagingServer to set
-
setTargetPassword
void setTargetPassword(java.lang.String targetPassword)
Sets the targetPassword.- Parameters:
targetPassword- The targetPassword to set
-
setTargetUser
void setTargetUser(java.lang.String targetUser)
Sets the targetUser.- Parameters:
targetUser- The targetUser to set
-
getTimeout
java.lang.Integer getTimeout()
Gets the timeout period in milliseconds. If a call takes longer than this amount of time, an exception will be thrown.- Returns:
- the timeout period in milliseconds. A null value indicates that the transport layer's default value will be used.
-
setTimeout
void setTimeout(java.lang.Integer aTimeout)
Sets the timeout period in milliseconds. If a call takes longer than this amount of time, an exception will be thrown.- Parameters:
aTimeout- the timeout period in milliseconds. A null value indicates that the transport layer's default value will be used.
-
-