Changeset 713

Show
Ignore:
Timestamp:
06/05/07 22:43:20 (1 year ago)
Author:
schst
Message:

Use @link instead of @see,
whitespace fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/main/php/net/stubbles/ipo/response/stubCookie.php

    r142 r713  
    99/** 
    1010 * Container for cookies to be send out to the user. 
    11  *  
     11 * 
    1212 * Cookies are used to store user-related data within the user-agent 
    1313 * e.g. to help detecting that requests are done by the same user. 
     
    1616 * @package     stubbles 
    1717 * @subpackage  ipo_response 
    18  * @see         http://wp.netscape.com/newsref/std/cookie_spec.html 
    19  * @see         http://www.faqs.org/rfcs/rfc2109.html 
     18 * @link        http://wp.netscape.com/newsref/std/cookie_spec.html 
     19 * @link        http://www.faqs.org/rfcs/rfc2109.html 
    2020 */ 
    2121class stubCookie extends stubBaseObject 
     
    6363     */ 
    6464    protected $httpOnly = false; 
    65      
     65 
    6666    /** 
    6767     * constructor 
     
    7575        $this->value = $value; 
    7676    } 
    77      
     77 
    7878    /** 
    7979     * creates the cookie 
     
    8888        return $cookie; 
    8989    } 
    90      
     90 
    9191    /** 
    9292     * set the timestamp when the cookie will expire 
     
    100100        return $this; 
    101101    } 
    102      
     102 
    103103    /** 
    104104     * set the path for which the cookie should be available 
     
    112112        return $this; 
    113113    } 
    114      
     114 
    115115    /** 
    116116     * set the domain where this cookie will be available 
     
    124124        return $this; 
    125125    } 
    126      
     126 
    127127    /** 
    128128     * switch whether cookie should only be used in secure connections 
     
    136136        return $this; 
    137137    } 
    138      
     138 
    139139    /** 
    140140     * switch whether cookie should only be accessible through http 
     
    148148        return $this; 
    149149    } 
    150      
     150 
    151151    /** 
    152152     * returns name of cookie 
     
    158158        return $this->name; 
    159159    } 
    160      
     160 
    161161    /** 
    162162     * returns value of cookie 
     
    168168        return $this->value; 
    169169    } 
    170      
     170 
    171171    /** 
    172172     * returns expiration timestamp of cookie 
     
    178178        return $this->expires; 
    179179    } 
    180      
     180 
    181181    /** 
    182182     * returns path of cookie 
     
    188188        return $this->path; 
    189189    } 
    190      
     190 
    191191    /** 
    192192     * returns domain of cookie 
     
    198198        return $this->domain; 
    199199    } 
    200      
     200 
    201201    /** 
    202202     * checks whether cookie should only be used in secure connections 
     
    208208        return $this->secure; 
    209209    } 
    210      
     210 
    211211    /** 
    212212     * checks whether cookie should only be accessible through http