/* =============================================================================== * * Part of the InfoGlue Content Management Platform (www.infoglue.org) * * =============================================================================== * * Copyright (C) * * This program is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2, as published by the * Free Software Foundation. See the file LICENSE.html for more information. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY, including the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * this program; if not, write to the Free Software Foundation, Inc. / 59 Temple * Place, Suite 330 / Boston, MA 02111-1307 / USA. * * =============================================================================== */ package org.infoglue.deliver.applications.filters; /** * Created by IntelliJ IDEA. * User: lbj * Date: 31-01-2004 * Time: 21:48:43 * To change this template use Options | File Templates. */ public abstract class FilterConstants { public final static String REPOSITORY_NAME_PARAMETER = "RepositoryName"; public final static String LANGUAGE_ID_PARAMETER = "LanguageId"; public final static String FILTER_URIS_PARAMETER = "FilterURIs"; public final static String ATTRIBUTE_NAME_PARAMETER = "AttributeName"; public final static String REPOSITORY_NAME_REQUEST_PARAMETER = "repositoryName"; public final static String LANGUAGE_ID_REQUEST_PARAMETER = "languageId"; public final static String REPOSITORY_ID = "RepositoryId"; public final static String LANGUAGE_ID = "LanguageId"; public FilterConstants() { } }