Package org.apache.cocoon.caching

Examples of org.apache.cocoon.caching.CachedResponse


     * If it is not available <code>null</code> is returned.
     * @param key         the key used by the caching algorithm to identify the
     *                    request
     */
    public CachedResponse get(Serializable key) {
        final CachedResponse r = (CachedResponse)this.store.get(key);
        if ( this.getLogger().isDebugEnabled()) {
            this.getLogger().debug("Cached response for " + key + " : " +
                                   (r == null ? "not found" : "found"));
        }
        return r;
View Full Code Here

TOP

Related Classes of org.apache.cocoon.caching.CachedResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.