/*******************************************************************************
 * Copyright (c), 2001, 2002 N2 Broadband, Inc.  All Rights Reserved.
 *
 * This module contains unpublished, confidential, proprietary
 * material.  The use and dissemination of this material are
 * governed by a license.  The above copyright notice does not
 * evidence any actual or intended publication of this material.
 *
 * Author:  Drake H. Henderson
 * Created:  11-12-01
 *
 ******************************************************************************/

package com.n2bb.util;

/**
 * Names of actions.  Used to identify the purpose of form submissions.
 *
 * @author dhenderson
 * @author kmatsuoka
 * @version $Id: ActionConstants.java,v 1.3 2006/10/26 23:37:46 rao Exp $
 */
public class ActionConstants {
    // generic
    public static final String list = "list";
    public static final String listFresh = "listFresh";
    public static final String scroll = "scroll";
    public static final String sort = "sort";
    public static final String changeState = "changeState";
    public static final String filter = "filter";
    public static final String report = "report";
    public static final String delete = "delete";
    public static final String add = "add";
    public static final String save = "save";
    public static final String edit = "edit";
    public static final String update = "update";
    
    
    public static final String METHOD_NAME = "methodName";
    
    public static final String UNDELETED_RESOURCES = "UnDeletedUsers";
    public static final String UNCHANGED_RESOURCES = "UnChangedUsers";
    public static final String UNDELETED_ROLES = "UnDeletedRoles";
    
}

