Package com.ibm.ws.javaee.dd.common
Interface MailSession
-
- All Superinterfaces:
Describable
,JNDIEnvironmentRef
public interface MailSession extends JNDIEnvironmentRef, Describable
Represents <mail-session>.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getFrom()
java.lang.String
getHost()
java.lang.String
getPassword()
java.util.List<Property>
getProperties()
java.lang.String
getStoreProtocol()
java.lang.String
getStoreProtocolClassName()
java.lang.String
getTransportProtocol()
java.lang.String
getTransportProtocolClassName()
java.lang.String
getUser()
-
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
-
getStoreProtocol
java.lang.String getStoreProtocol()
- Returns:
- <store-protocol>, or null if unspecified
-
getStoreProtocolClassName
java.lang.String getStoreProtocolClassName()
- Returns:
- <store-protocol-class>, or null if unspecified
-
getTransportProtocol
java.lang.String getTransportProtocol()
- Returns:
- <transport-protocol>, or null if unspecified
-
getTransportProtocolClassName
java.lang.String getTransportProtocolClassName()
- Returns:
- <transport-protocol-class>, or null if unspecified
-
getHost
java.lang.String getHost()
- Returns:
- <host>, 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
-
getFrom
java.lang.String getFrom()
- Returns:
- <from>, or null if unspecified
-
getProperties
java.util.List<Property> getProperties()
- Returns:
- <property> as a read-only list
-
-