Home | History | Annotate | Download | only in header

Lines Matching refs:expires

52     /** expires field
54 protected int expires;
67 return Integer.toString(expires);
71 * Gets the expires value of the ExpiresHeader. This expires value is
74 * @return the expires value of the ExpiresHeader.
78 return expires;
82 * Sets the relative expires value of the ExpiresHeader.
83 * The expires value MUST be greater than zero and MUST be
86 * @param expires - the new expires value of this ExpiresHeader
93 public void setExpires(int expires) throws InvalidArgumentException {
94 if (expires < 0)
95 throw new InvalidArgumentException("bad argument " + expires);
96 this.expires = expires;