Package com.ibm.ws.javaee.dd.common
Interface JMSConnectionFactory
- 
- All Superinterfaces:
- Describable,- JNDIEnvironmentRef
 
 public interface JMSConnectionFactory extends JNDIEnvironmentRef, Describable Represents <jms-connection-factory>.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetClassNameValue()java.lang.StringgetClientId()java.lang.StringgetInterfaceNameValue()intgetMaxPoolSize()intgetMinPoolSize()java.lang.StringgetPassword()java.util.List<Property>getProperties()java.lang.StringgetResourceAdapter()java.lang.StringgetUser()booleanisSetMaxPoolSize()booleanisSetMinPoolSize()booleanisSetTransactional()booleanisTransactional()- 
Methods inherited from interface com.ibm.ws.javaee.dd.common.DescribablegetDescriptions
 - 
Methods inherited from interface com.ibm.ws.javaee.dd.common.JNDIEnvironmentRefgetName
 
- 
 
- 
- 
- 
Method Detail- 
getInterfaceNameValuejava.lang.String getInterfaceNameValue() - Returns:
- <interface-name>, or null if unspecified
 
 - 
getClassNameValuejava.lang.String getClassNameValue() - Returns:
- <class-name>, or null if unspecified
 
 - 
getResourceAdapterjava.lang.String getResourceAdapter() - Returns:
- <resource-adapter>, or null if unspecified
 
 - 
getUserjava.lang.String getUser() - Returns:
- <user>, or null if unspecified
 
 - 
getPasswordjava.lang.String getPassword() - Returns:
- <password>, or null if unspecified
 
 - 
getClientIdjava.lang.String getClientId() - Returns:
- <client-id>, or null if unspecified
 
 - 
getPropertiesjava.util.List<Property> getProperties() - Returns:
- <property> as a read-only list
 
 - 
isSetTransactionalboolean isSetTransactional() - Returns:
- true if <transactional> is specified
- See Also:
- isTransactional()
 
 - 
isTransactionalboolean isTransactional() - Returns:
- <transactional> if specified
- See Also:
- isSetTransactional()
 
 - 
isSetMaxPoolSizeboolean isSetMaxPoolSize() - Returns:
- true if <max-pool-size> is specified
- See Also:
- getMaxPoolSize()
 
 - 
getMaxPoolSizeint getMaxPoolSize() - Returns:
- <max-pool-size> if specified
- See Also:
- isSetMaxPoolSize()
 
 - 
isSetMinPoolSizeboolean isSetMinPoolSize() - Returns:
- true if <min-pool-size> is specified
- See Also:
- getMinPoolSize()
 
 - 
getMinPoolSizeint getMinPoolSize() - Returns:
- <min-pool-size> if specified
- See Also:
- isSetMinPoolSize()
 
 
- 
 
-