Home | History | Annotate | Download | only in header

Lines Matching refs:expires

52     protected int expires;
60 expires = -1;
65 * Sets the relative expires value of the SubscriptionStateHeader. The
66 * expires value MUST be greater than zero and MUST be less than 2**31.
68 * @param expires - the new expires value of this SubscriptionStateHeader.
71 public void setExpires(int expires) throws InvalidArgumentException {
72 if (expires < 0)
75 + "Exception, SubscriptionState, setExpires(), the expires parameter is < 0");
76 this.expires = expires;
80 * Gets the expires value of the SubscriptionStateHeader. This expires value is
83 * @return the expires value of the SubscriptionStateHeader.
86 return expires;
175 if (expires != -1)
176 buffer.append(";expires=").append(expires);