Package com.ibm.ws.javaee.dd.common
Interface JMSConnectionFactory
-
- All Superinterfaces:
Describable,JNDIEnvironmentRef
public interface JMSConnectionFactory extends JNDIEnvironmentRef, Describable
Represents <jms-connection-factory>.
-
-
Method Summary
All 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.Describable
getDescriptions
-
Methods inherited from interface com.ibm.ws.javaee.dd.common.JNDIEnvironmentRef
getName
-
-
-
-
Method Detail
-
getInterfaceNameValue
java.lang.String getInterfaceNameValue()
- Returns:
- <interface-name>, or null if unspecified
-
getClassNameValue
java.lang.String getClassNameValue()
- Returns:
- <class-name>, or null if unspecified
-
getResourceAdapter
java.lang.String getResourceAdapter()
- Returns:
- <resource-adapter>, or null if unspecified
-
getUser
java.lang.String getUser()
- Returns:
- <user>, or null if unspecified
-
getPassword
java.lang.String getPassword()
- Returns:
- <password>, or null if unspecified
-
getClientId
java.lang.String getClientId()
- Returns:
- <client-id>, or null if unspecified
-
getProperties
java.util.List<Property> getProperties()
- Returns:
- <property> as a read-only list
-
isSetTransactional
boolean isSetTransactional()
- Returns:
- true if <transactional> is specified
- See Also:
isTransactional()
-
isTransactional
boolean isTransactional()
- Returns:
- <transactional> if specified
- See Also:
isSetTransactional()
-
isSetMaxPoolSize
boolean isSetMaxPoolSize()
- Returns:
- true if <max-pool-size> is specified
- See Also:
getMaxPoolSize()
-
getMaxPoolSize
int getMaxPoolSize()
- Returns:
- <max-pool-size> if specified
- See Also:
isSetMaxPoolSize()
-
isSetMinPoolSize
boolean isSetMinPoolSize()
- Returns:
- true if <min-pool-size> is specified
- See Also:
getMinPoolSize()
-
getMinPoolSize
int getMinPoolSize()
- Returns:
- <min-pool-size> if specified
- See Also:
isSetMinPoolSize()
-
-