KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > teamkonzept > webman > mainint > db > queries > oracle > TKDBSiteDocNew


1 /*
2  * $Header: /cvsroot/webman-cms/source/webman/com/teamkonzept/webman/mainint/db/queries/oracle/Attic/TKDBSiteDocNew.java,v 1.3 2001/02/22 10:23:16 ralf Exp $
3  *
4  */

5 package com.teamkonzept.webman.mainint.db.queries.oracle;
6
7 import java.sql.*;
8
9 import com.teamkonzept.db.*;
10 import com.teamkonzept.webman.mainint.db.queries.sitetree.*;
11
12     /**
13         required params
14             SITE_NODE_ID
15             DOCUMENT_NAME
16             DOCUMENT_SHORTNAME
17             INHERITABLE
18             DOCUMENT_TYPE
19             
20             
21         optional params
22             PRESENTATION_ID
23             EXTERNAL_URL
24             INHERIT_END_LEVEL,
25             INHERIT_BEGIN_LEVEL
26     
27     */

28 public class TKDBSiteDocNew extends CompositeQuery
29 {
30
31     protected void initConcreteCompositeQuery() throws SQLException
32     {
33     registerQuery(SdNextIdx.class);
34     registerQuery(SdInsertNew.class);
35     registerQuery(SdGet.class);
36
37     setDefaultParameterPropagation();
38
39     }
40 }
41
Popular Tags