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

javax.faces.event.PhaseId Maven / Gradle / Ivy

The newest version!
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 1997-2010 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * https://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

package javax.faces.event;


import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import javax.faces.FacesException;


/**
 * 

Typesafe enumeration of * the legal values that may be returned by the * getPhaseId() method of the {@link FacesEvent} interface. */ public class PhaseId implements Comparable { // ----------------------------------------------------------- Constructors /** *

Private constructor to disable the creation of new instances.

*/ private PhaseId(String newPhaseName) { phaseName = newPhaseName; } // ----------------------------------------------------- Instance Variables /** *

The ordinal value assigned to this instance.

*/ private final int ordinal = nextOrdinal++; /** *

The (optional) name for this phase.

*/ private String phaseName = null; // --------------------------------------------------------- Public Methods /** *

Compare this {@link PhaseId} instance to the specified one. * Returns a negative integer, zero, or a positive integer if this * object is less than, equal to, or greater than the specified object.

* * @param other The other object to be compared to */ @Override public int compareTo(Object other) { return this.ordinal - ((PhaseId) other).ordinal; } /** *

Return the ordinal value of this {@link PhaseId} instance.

* * @return the ordinal */ public int getOrdinal() { return (this.ordinal); } /** *

Return a String representation of this {@link PhaseId} instance.

*/ @Override public String toString() { if (null == phaseName) { return (String.valueOf(this.ordinal)); } return (String.valueOf(this.phaseName) + ' ' + this.ordinal); } /** *

Return the name of this phase.

* * @since 2.2 * * @return the name */ public String getName() { return this.phaseName; } /** *

Return a PhaseId * representation of the arcument phase.

* * @param phase the String for which the corresponding * PhaseId should be returned. * * @throws NullPointerException if argument phase is * null. * * @throws FacesException if the PhaseId * corresponding to the argument phase cannot be found. * * @since 2.2 * * @return the phase id corresponding to the argument {@code phase} */ public static PhaseId phaseIdValueOf(String phase) { if (null == phase) { throw new NullPointerException(); } PhaseId result = null; if (ANY_PHASE_NAME.equals(phase)) { result = PhaseId.ANY_PHASE; } else if (APPLY_REQUEST_VALUES_NAME.equalsIgnoreCase(phase)) { result = PhaseId.APPLY_REQUEST_VALUES; } else if (INVOKE_APPLICATION_NAME.equalsIgnoreCase(phase)) { result = PhaseId.INVOKE_APPLICATION; } else if (PROCESS_VALIDATIONS_NAME.equalsIgnoreCase(phase)) { result = PhaseId.PROCESS_VALIDATIONS; } else if (RENDER_RESPONSE_NAME.equalsIgnoreCase(phase)) { result = PhaseId.RENDER_RESPONSE; } else if (RESTORE_VIEW_NAME.equalsIgnoreCase(phase)) { result = PhaseId.RESTORE_VIEW; } else if (UPDATE_MODEL_VALUES_NAME.equalsIgnoreCase(phase)) { result = PhaseId.UPDATE_MODEL_VALUES; } else { throw new FacesException("Not a valid phase [" + phase + "]"); } return result; } // ------------------------------------------------------- Static Variables /** *

Static counter returning the ordinal value to be assigned to the * next instance that is created.

*/ private static int nextOrdinal = 0; // ------------------------------------------------------ Create Instances // Any new Phase values must go at the end of the list, or we will break // backwards compatibility on serialized instances private static final String ANY_PHASE_NAME = "ANY"; /** *

Identifier that indicates an interest in events, no matter * which request processing phase is being performed.

*/ public static final PhaseId ANY_PHASE = new PhaseId(ANY_PHASE_NAME); private static final String RESTORE_VIEW_NAME = "RESTORE_VIEW"; /** *

Identifier that indicates an interest in events queued for * the Restore View phase of the request * processing lifecycle.

*/ public static final PhaseId RESTORE_VIEW = new PhaseId(RESTORE_VIEW_NAME); private static final String APPLY_REQUEST_VALUES_NAME = "APPLY_REQUEST_VALUES"; /** *

Identifier that indicates an interest in events queued for * the Apply Request Values phase of the request * processing lifecycle.

*/ public static final PhaseId APPLY_REQUEST_VALUES = new PhaseId(APPLY_REQUEST_VALUES_NAME); private static final String PROCESS_VALIDATIONS_NAME = "PROCESS_VALIDATIONS"; /** *

Identifier that indicates an interest in events queued for * the Process Validations phase of the request * processing lifecycle.

*/ public static final PhaseId PROCESS_VALIDATIONS = new PhaseId(PROCESS_VALIDATIONS_NAME); private static final String UPDATE_MODEL_VALUES_NAME = "UPDATE_MODEL_VALUES"; /** *

Identifier that indicates an interest in events queued for * the Update Model Values phase of the request * processing lifecycle.

*/ public static final PhaseId UPDATE_MODEL_VALUES = new PhaseId(UPDATE_MODEL_VALUES_NAME); private static final String INVOKE_APPLICATION_NAME = "INVOKE_APPLICATION"; /** *

Identifier that indicates an interest in events queued for * the Invoke Application phase of the request * processing lifecycle.

*/ public static final PhaseId INVOKE_APPLICATION = new PhaseId(INVOKE_APPLICATION_NAME); private static final String RENDER_RESPONSE_NAME = "RENDER_RESPONSE"; /** *

Identifier for the Render Response phase of the * request processing lifecycle.

*/ public static final PhaseId RENDER_RESPONSE = new PhaseId(RENDER_RESPONSE_NAME); /** *

Array of all defined values, ascending order of ordinal value. * Be sure you include any new instances created above, in the * same order.

*/ private static final PhaseId[] values = {ANY_PHASE, RESTORE_VIEW, APPLY_REQUEST_VALUES, PROCESS_VALIDATIONS, UPDATE_MODEL_VALUES, INVOKE_APPLICATION, RENDER_RESPONSE}; /** *

List of valid {@link PhaseId} instances, in ascending order * of their ordinal value.

*/ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(values)); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy