Interface ConnectionFactoryOptions
-
- All Known Implementing Classes:
ActiveMQConnectionFactory,ActiveMQJMSConnectionFactory,ActiveMQQueueConnectionFactory,ActiveMQTopicConnectionFactory,ActiveMQXAConnectionFactory,ActiveMQXAQueueConnectionFactory,ActiveMQXATopicConnectionFactory
public interface ConnectionFactoryOptionsCommon interface to be used to share common parameters between the RA and client JMS. Initially developed to carry on Serialization packages allow list, but it could eventually be expanded.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description StringgetDeserializationAllowList()StringgetDeserializationBlackList()Deprecated, for removal: This API element is subject to removal in a future version.StringgetDeserializationDenyList()StringgetDeserializationWhiteList()Deprecated, for removal: This API element is subject to removal in a future version.voidsetDeserializationAllowList(String allowList)voidsetDeserializationBlackList(String denyList)Deprecated, for removal: This API element is subject to removal in a future version.voidsetDeserializationDenyList(String denyList)voidsetDeserializationWhiteList(String allowList)Deprecated, for removal: This API element is subject to removal in a future version.
-
-
-
Method Detail
-
getDeserializationBlackList
@Deprecated(forRemoval=true) String getDeserializationBlackList()
Deprecated, for removal: This API element is subject to removal in a future version.
-
setDeserializationBlackList
@Deprecated(forRemoval=true) void setDeserializationBlackList(String denyList)
Deprecated, for removal: This API element is subject to removal in a future version.
-
getDeserializationWhiteList
@Deprecated(forRemoval=true) String getDeserializationWhiteList()
Deprecated, for removal: This API element is subject to removal in a future version.
-
setDeserializationWhiteList
@Deprecated(forRemoval=true) void setDeserializationWhiteList(String allowList)
Deprecated, for removal: This API element is subject to removal in a future version.
-
getDeserializationDenyList
String getDeserializationDenyList()
-
setDeserializationDenyList
void setDeserializationDenyList(String denyList)
-
getDeserializationAllowList
String getDeserializationAllowList()
-
setDeserializationAllowList
void setDeserializationAllowList(String allowList)
-
-