~ubuntu-branches/ubuntu/lucid/libstruts1.2-java/lucid

« back to all changes in this revision

Viewing changes to contrib/artimus/WEB-INF/src/java/org/apache/artimus/keys/sql/Commands.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2006-04-24 12:14:23 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060424121423-naev53qigqgks0sa
Tags: 1.2.9-1
New upstream  release Fixes  three security  problems: CVE-2006-1546,
CVE-2006-1547,  CVE-2006-1548  (closes:  #360551),  thanks  to  Moritz
Muehlenhoff.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * $Header: /home/cvs/jakarta-struts/contrib/artimus/WEB-INF/src/java/org/apache/artimus/keys/sql/Commands.java,v 1.3 2004/03/14 07:15:04 sraeburn Exp $
3
 
 * $Revision: 1.3 $
4
 
 * $Date: 2004/03/14 07:15:04 $
5
 
 *
6
 
 * Copyright 2001-2004 The Apache Software Foundation.
7
 
 * 
8
 
 * Licensed under the Apache License, Version 2.0 (the "License");
9
 
 * you may not use this file except in compliance with the License.
10
 
 * You may obtain a copy of the License at
11
 
 * 
12
 
 *      http://www.apache.org/licenses/LICENSE-2.0
13
 
 * 
14
 
 * Unless required by applicable law or agreed to in writing, software
15
 
 * distributed under the License is distributed on an "AS IS" BASIS,
16
 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
 
 * See the License for the specific language governing permissions and
18
 
 * limitations under the License.
19
 
 */
20
 
 
21
 
 
22
 
package org.apache.artimus.keys.sql;
23
 
 
24
 
 
25
 
/**
26
 
 * SQL command constants for the Articles application.
27
 
 * <p>
28
 
 * @version $Revision: 1.3 $ $Date: 2004/03/14 07:15:04 $
29
 
 */
30
 
public final class Commands {
31
 
 
32
 
 
33
 
    // ---- KEYS ----
34
 
 
35
 
    /**
36
 
     * Default starting value for primary keys.
37
 
     */
38
 
    public static final String PRIMARY_KEY_INIT = "101";
39
 
 
40
 
 
41
 
    /**
42
 
     * Name for KEYS table
43
 
     */
44
 
    public static final String KEYS_TABLE = "artimus_keys ";
45
 
 
46
 
 
47
 
    /**
48
 
     * DDL for KEYS TABLE
49
 
     */
50
 
    public static final String KEYS_CREATE =
51
 
      "(name char(31) NOT NULL PRIMARY KEY," +
52
 
       "marked bit NOT NULL DEFAULT 0," +
53
 
       "next integer NOT NULL DEFAULT 0" +
54
 
    ");";
55
 
 
56
 
 
57
 
    /**
58
 
     * SQL command to select next key.
59
 
     */
60
 
    public static final String KEYS_NEXT = "SELECT next FROM " +
61
 
        KEYS_TABLE + "WHERE name=?";
62
 
 
63
 
 
64
 
    /**
65
 
     * SQL command to select next key.
66
 
     */
67
 
    public static final String KEYS_INC = "UPDATE " +
68
 
        KEYS_TABLE +"SET next=next+1 WHERE name=?";
69
 
 
70
 
 
71
 
// ---- End Commands ----
72
 
 
73
 
}