/* * Copyright 2011-2012 Blazebit * * Licensed 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 com.blazebit.blazefaces.util; /** * * @author Christian Beikov */ public class Constants { public static final String PARTIAL_REQUEST_PARAM = "javax.faces.partial.ajax"; public static final String PARTIAL_UPDATE_PARAM = "javax.faces.partial.render"; public static final String PARTIAL_PROCESS_PARAM = "javax.faces.partial.execute"; public static final String PARTIAL_EVENT_PARAM = "javax.faces.partial.event"; public static final String PARTIAL_SOURCE_PARAM = "javax.faces.source"; public static final String PARTIAL_BEHAVIOR_EVENT_PARAM = "javax.faces.behavior.event"; public static final String THEME_PARAM = "blazefaces.THEME"; public static final String FEATURE_DETECTION_PARAM = "blazefaces.FEATURE_DETECTION"; public static final String AUTO_UPDATE = "blazefaces.AUTO_UPDATE"; public static final String PUSH_SERVER_URL = "blazefaces.PUSH_SERVER_URL"; public static final String SUBMIT_PARAM = "blazefaces.SUBMIT"; public static final String DOWNLOAD_COOKIE = "blazefaces.download"; public final static String VERSION = "0.1.3-SNAPSHOT"; public final static String LIBRARY = "blazefaces"; public final static String CUSTOM_EVENT = "CUSTOM_EVENT"; public final static String PUSH_PATH = "/blazepush"; public static final String DYNAMIC_CONTENT_PARAM = "bfdrid"; }