001    // Copyright 2006, 2007, 2008 The Apache Software Foundation
002    //
003    // Licensed under the Apache License, Version 2.0 (the "License");
004    // you may not use this file except in compliance with the License.
005    // You may obtain a copy of the License at
006    //
007    //     http://www.apache.org/licenses/LICENSE-2.0
008    //
009    // Unless required by applicable law or agreed to in writing, software
010    // distributed under the License is distributed on an "AS IS" BASIS,
011    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
012    // See the License for the specific language governing permissions and
013    // limitations under the License.
014    
015    package org.apache.tapestry5.annotations;
016    
017    import org.apache.tapestry5.services.Session;
018    
019    import java.lang.annotation.Documented;
020    import static java.lang.annotation.ElementType.FIELD;
021    import java.lang.annotation.Retention;
022    import static java.lang.annotation.RetentionPolicy.RUNTIME;
023    import java.lang.annotation.Target;
024    
025    /**
026     * Identifies a field as persistent, meaning its value persists from one request to the next. Different strategies exist
027     * for how this is accomplished, the most common being the default, "session", which stores the field's value in the
028     * {@link Session}.
029     * <p/>
030     * In most cases, the value will be omitted and will default to the empty string. This forces a search for the correct
031     * strategy. Starting with the component (or mixin) itself, a check is made for the {@link Meta meta data property}
032     * <code>tapestry.persistence-strategy</code>. If a value is found, it is used, otherwise the search continues up the
033     * inheritance hierarchy, towards the page. If not found, then the "session" strategy is used.
034     * <p/>
035     * In this way, the session persistence strategy for a component and all of its sub-components can be controlled by the
036     * containing component.
037     *
038     * @see org.apache.tapestry5.services.MetaDataLocator
039     * @see org.apache.tapestry5.PersistenceConstants
040     */
041    @Target(FIELD)
042    @Documented
043    @Retention(RUNTIME)
044    public @interface Persist
045    {
046    
047        /**
048         * The strategy used to persist the value. The default value, the empty string, allows persistence to be decided by
049         * the containing component and component hierarchy.
050         */
051        String value() default "";
052    }