org.apache.openejb.jee
Class CookieConfig

java.lang.Object
  extended by org.apache.openejb.jee.CookieConfig

public class CookieConfig
extends Object

web-common_3_0.xsd

Java class for cookie-configType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="cookie-configType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{http://java.sun.com/xml/ns/javaee}cookie-nameType" minOccurs="0"/>
         <element name="domain" type="{http://java.sun.com/xml/ns/javaee}cookie-domainType" minOccurs="0"/>
         <element name="path" type="{http://java.sun.com/xml/ns/javaee}cookie-pathType" minOccurs="0"/>
         <element name="comment" type="{http://java.sun.com/xml/ns/javaee}cookie-commentType" minOccurs="0"/>
         <element name="http-only" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/>
         <element name="secure" type="{http://java.sun.com/xml/ns/javaee}true-falseType" minOccurs="0"/>
         <element name="max-age" type="{http://java.sun.com/xml/ns/javaee}xsdIntegerType" minOccurs="0"/>
       </sequence>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  String comment
           
protected  String domain
           
protected  Boolean httpOnly
           
protected  String id
           
protected  Integer maxAge
           
protected  String name
           
protected  String path
           
protected  Boolean secure
           
 
Constructor Summary
CookieConfig()
           
 
Method Summary
 String getComment()
           
 String getDomain()
           
 Boolean getHttpOnly()
           
 String getId()
           
 Integer getMaxAge()
           
 String getName()
           
 String getPath()
           
 Boolean getSecure()
           
 void setComment(String value)
           
 void setDomain(String value)
           
 void setHttpOnly(Boolean value)
           
 void setId(String value)
           
 void setMaxAge(Integer value)
           
 void setName(String value)
           
 void setPath(String value)
           
 void setSecure(Boolean value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected String name

domain

protected String domain

path

protected String path

comment

protected String comment

httpOnly

protected Boolean httpOnly

secure

protected Boolean secure

maxAge

protected Integer maxAge

id

protected String id
Constructor Detail

CookieConfig

public CookieConfig()
Method Detail

getName

public String getName()

setName

public void setName(String value)

getDomain

public String getDomain()

setDomain

public void setDomain(String value)

getPath

public String getPath()

setPath

public void setPath(String value)

getComment

public String getComment()

setComment

public void setComment(String value)

getHttpOnly

public Boolean getHttpOnly()

setHttpOnly

public void setHttpOnly(Boolean value)

getSecure

public Boolean getSecure()

setSecure

public void setSecure(Boolean value)

getMaxAge

public Integer getMaxAge()

setMaxAge

public void setMaxAge(Integer value)

getId

public String getId()

setId

public void setId(String value)


Copyright © 1999-2011 The Apache Software Foundation. All Rights Reserved.