source: trunk/greenstone3-extensions/gsdl-as/src/org/greenstone/gsdlas/Constants.java@ 8875

Last change on this file since 8875 was 8875, checked in by schweer, 19 years ago

first changes towards treating collection ids as unique only on a per-host basis (addressing BTS #11)

  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1/*
2 * Created on Dec 21, 2004
3 * Copyright (C) Andrea Schweer, 2004
4 *
5 * This file is part of the Greenstone Alerting Service.
6 * Refer to the COPYING file in the base directory of this package
7 * for licensing information.
8 */
9package org.greenstone.gsdlas;
10
11/**
12 * @author schweer
13 *
14 * TODO To change the template for this generated type comment go to
15 * Window - Preferences - Java - Code Style - Code Templates
16 */
17public abstract class Constants {
18 public static final String ACTION_PARAM = "action";
19
20 public static final String HOST_QUERY_FIELD = "host_query";
21 public static final String COLLECTION_QUERY_FIELD = "collection_query";
22 public static final String HOST_ID_FIELD = "hostID";
23 public static final String COLLECTION_ID_FIELD = "collectionID";
24 public static final String HOST_COLLECTION_ID_FIELD = "hostCollectionID";
25 public static final String DOCUMENT_ID_FIELD = "documentID";
26 public static final String DOCUMENT_CONTENT_FIELD = "document_content";
27 public static final String DOCUMENT_TITLE_FIELD = "document_title";
28 public static final String TYPE_FIELD = "type";
29
30
31}
Note: See TracBrowser for help on using the repository browser.