Constants.java :  » Content-Management-System » contineo » org » contineo » web » util » Java Open Source

Java Open Source » Content Management System » contineo 
contineo » org » contineo » web » util » Constants.java
package org.contineo.web.util;

public final class Constants {
    // ActionForward to success.
    public static final String SUCCESS = "success";

    // ActionForward to failure.
    public static final String FAILURE = "failure";

    // ActionForward to "outcome".
    public static final String OUTCOME = "outcome";

    // ActionForward to "noaccess".
    public static final String NOACCESS = "noaccess";

    // ActionForward to "invalid".
    public static final String INVALID = "invalid";

    // The currenly logged user name
    public static final String AUTH_USERNAME = "authUser";

    // The language of the currently logged user
    public static final String LANGUAGE = "language";

    // The application skin name
    public static final String SKIN = "xkins.defaultSkin";
    public static final Object LOCALE = "locale";
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.