All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juneau.http.Age Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
// * with the License.  You may obtain a copy of the License at                                                              *
// *                                                                                                                         *
// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
// *                                                                                                                         *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
// * specific language governing permissions and limitations under the License.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.http;

import org.apache.juneau.http.annotation.*;

/**
 * Represents a parsed Age HTTP response header.
 *
 * 

* The age the object has been in a proxy cache in seconds. * *

Example
*

* Age: 12 *

* *
RFC2616 Specification
* * The Age response-header field conveys the sender's estimate of the amount of time since the response (or its * revalidation) was generated at the origin server. * A cached response is "fresh" if its age does not exceed its freshness lifetime. * Age values are calculated as specified in section 13.2.3. * *

* Age = "Age" ":" age-value * age-value = delta-seconds *

* *

* Age values are non-negative decimal integers, representing time in seconds. * *

* If a cache receives a value larger than the largest positive integer it can represent, or if any of its age * calculations overflows, it MUST transmit an Age header with a value of 2147483648 (2^31). * *

* An HTTP/1.1 server that includes a cache MUST include an Age header field in every response generated from its own * cache. * *

* Caches SHOULD use an arithmetic type of at least 31 bits of range. * *

See Also:
*
    *
*/ @Header("Age") public final class Age extends HeaderInteger { /** * Constructor. * * @param value */ public Age(Integer value) { super(value); } /** * Returns a parsed Age header. * * @param value The Age header string. * @return The parsed Age header, or null if the string was null. */ public static Age forString(String value) { if (value == null) return null; return new Age(value); } private Age(String value) { super(value); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy