001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Jean-Marc Orliaguet, Chalmers
011 *
012 * $Id$
013 */
014
015package org.nuxeo.theme;
016
017import org.nuxeo.common.xmap.annotation.XNode;
018import org.nuxeo.common.xmap.annotation.XObject;
019
020@XObject("caching")
021public final class CachingDef {
022
023    @XNode("lifetime")
024    private String lifetime;
025
026    public String getLifetime() {
027        return lifetime;
028    }
029
030    public void setLifetime(final String lifetime) {
031        this.lifetime = lifetime;
032    }
033
034}