Package org.apache.openejb.jee
Class SessionConfig
- java.lang.Object
-
- org.apache.openejb.jee.SessionConfig
-
public class SessionConfig extends Object
web-common_3_0.xsdJava class for session-configType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="session-configType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="session-timeout" type="{http://java.sun.com/xml/ns/javaee}xsdIntegerType" minOccurs="0"/> <element name="cookie-config" type="{http://java.sun.com/xml/ns/javaee}cookie-configType" minOccurs="0"/> <element name="tracking-mode" type="{http://java.sun.com/xml/ns/javaee}tracking-modeType" maxOccurs="3" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CookieConfigcookieConfigprotected Stringidprotected IntegersessionTimeoutprotected List<TrackingMode>trackingMode
-
Constructor Summary
Constructors Constructor Description SessionConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CookieConfiggetCookieConfig()StringgetId()IntegergetSessionTimeout()List<TrackingMode>getTrackingMode()voidsetCookieConfig(CookieConfig value)voidsetId(String value)voidsetSessionTimeout(Integer value)
-
-
-
Field Detail
-
sessionTimeout
protected Integer sessionTimeout
-
cookieConfig
protected CookieConfig cookieConfig
-
trackingMode
protected List<TrackingMode> trackingMode
-
id
protected String id
-
-
Method Detail
-
getSessionTimeout
public Integer getSessionTimeout()
-
setSessionTimeout
public void setSessionTimeout(Integer value)
-
getCookieConfig
public CookieConfig getCookieConfig()
-
setCookieConfig
public void setCookieConfig(CookieConfig value)
-
getTrackingMode
public List<TrackingMode> getTrackingMode()
-
getId
public String getId()
-
setId
public void setId(String value)
-
-