javax.faces.event.PhaseId Maven / Gradle / Ivy
/*
* $Id: PhaseId.java,v 1.21 2007/01/26 20:33:49 rlubke Exp $
*/
/*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://javaserverfaces.dev.java.net/CDDL.html or
* legal/CDDLv1.0.txt.
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* [Name of File] [ver.__] [Date]
*
* Copyright 2005 Sun Microsystems Inc. All Rights Reserved
*/
package javax.faces.event;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
/**
* 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
*/
public int compareTo(Object other) {
return this.ordinal - ((PhaseId) other).ordinal;
}
/**
* Return the ordinal value of this {@link PhaseId} instance.
*/
public int getOrdinal() {
return (this.ordinal);
}
/**
* Return a String representation of this {@link PhaseId} instance.
*/
public String toString() {
if (null == phaseName) {
return (String.valueOf(this.ordinal));
}
return (String.valueOf(this.phaseName) + ' ' + this.ordinal);
}
// ------------------------------------------------------- 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));
}