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

org.apache.myfaces.trinidad.event.WindowLifecycleListener Maven / Gradle / Ivy

There is a newer version: 2.2.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.myfaces.trinidad.event;

import java.util.EventListener;

import javax.faces.context.ExternalContext;

/**
 * 

* A listener called when the Lifecyle of a Window changes. *

*

* Window listeners may be registered automatically by adding a file * containing the names of the classes implementing the WindowLifecycleListener in a file named * org.apache.myfaces.trinidad.event.WindowLifecycleListener inside of * the META_INF/services directory or manually by calling * WindowManager.addWindowLifecycleListener * @see org.apache.myfaces.trinidad.context.WindowManager */ public interface WindowLifecycleListener extends EventListener { /** *

* Called when the LifecycleState of a Window changes. *

*

* The current lifecycle state of a Window is the framework's best guess and may not be accurate. * In particular, the last remaining open window may never move into the CLOSED state * once it has moved into the UNLOADED state. In addition, no Window lifecycle events * are delivered if the Session ceases to exist. *

*

* The FacesContext may not be available at the time that this event is delivered. *

* @param extContext ExternalContext available for this event * @param event WindowLifecycleEvent indicating the cause of the change to the Window's * LifecycleState */ public abstract void processWindowLifecylce( ExternalContext extContext, WindowLifecycleEvent event); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy