Home | History | Annotate | Download | only in extensions

Lines Matching defs:expires

30     public static final String NAME = "Session-Expires";
32 public int expires;
42 * Gets the expires value of the SessionExpiresHeader. This expires value is
47 * @return the expires value of the ExpiresHeader.
53 return expires;
57 * Sets the relative expires value of the SessionExpiresHeader.
58 * The expires value MUST be greater than zero and MUST be
61 * @param expires - the new expires value
68 public void setExpires(int expires) throws InvalidArgumentException {
69 if (expires < 0)
70 throw new InvalidArgumentException("bad argument " + expires);
71 this.expires = expires;
86 String retval = Integer.toString(expires);