Source Code Cross Referenced for DatabaseDefaults.java in  » Content-Management-System » webman » com » teamkonzept » webman » mainint » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Content Management System » webman » com.teamkonzept.webman.mainint 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /**
02:         * Title:       <p>
03:         * Description:   Verschiedene Werte, die wichtig für Datenbankabfragen sind<p>
04:         * Copyright:    Copyright (c) <p>
05:         * Company:      <p>
06:         * @author
07:         * @version 1.0
08:         */package com.teamkonzept.webman.mainint;
09:
10:        public interface DatabaseDefaults {
11:            /** Wert der in der DB 'directorynode' repraesentiert */
12:            String DIRECTORY_NODE = "1";
13:
14:            /** Wert der in der DB 'group' repraesentiert */
15:            String GROUP = "2";
16:
17:            /** Wert der in der DB 'single' repraesentiert */
18:            String SINGLE = "3";
19:
20:            /** Wert der in der Tabelle SITE_TREE ein Directory repraesentiert */
21:            String SITE_DIRECTORY = "3";
22:
23:            /** Wert der in der Tabelle SITE_TREE einen 'Gruppenknoten' repraesentiert */
24:            String SITE_GROUP = "2";
25:
26:            /** Wert der in der DB Component Type 'getypte Referenz' repraesentiert */
27:            String REFERENCE_TYPED = "2";
28:
29:            /** Wert der in der DB Component Type 'freie Referenz' repraesentiert */
30:            String REFERENCE_FREE = "1";
31:
32:            /** Wert der in der DB Tabelle DOCUMENT_REFERENCE  eine 'absolute Referenz' repraesentiert */
33:            String REFERENCE_ABSOLUTE = "1";
34:
35:            /** Wert der in der DB Tabelle DOCUMENT_REFERENCE  eine 'relative Referenz' repraesentiert */
36:            String REFERENCE_RELATIVE = "2";
37:
38:            /** Wert der in der DB Component Type 'Content' repraesentiert */
39:            String CONTENT = "3";
40:
41:            /** Wert der in der DB Component Type 'Structure' repraesentiert */
42:            String STRUCTURE = "4";
43:
44:            /** Wert der in der SITE_DOCUMENT.INHERIT_END_LEVEL
45:                eine unendlich tiefe Vererbung repraesentiert
46:             */
47:            Integer INHERIT_INFINITE = new Integer(-1);
48:
49:            /** Wert der in der SITE_DOCUMENT.INHERIT_END_LEVEL
50:                eine unendlich tiefe Vererbung repraesentiert
51:             */
52:            String INHERIT_INFINITE_STRING = INHERIT_INFINITE.toString();
53:
54:            /** die Integer dazu */
55:            Integer DIRECTORY_NODE_INTEGER = new Integer(DIRECTORY_NODE);
56:
57:            /** die Integer dazu */
58:            Integer GROUP_INTEGER = new Integer(GROUP);
59:
60:            /** die Integer dazu */
61:            Integer SINGLE_INTEGER = new Integer(SINGLE);
62:
63:            /** die Integer dazu */
64:            Integer SITE_DIRECTORY_INTEGER = new Integer(SITE_DIRECTORY);
65:
66:            /** die Integer dazu */
67:            Integer SITE_GROUP_INTEGER = new Integer(SITE_GROUP);
68:
69:            Integer REFERENCE_ABSOLUTE_INTEGER = new Integer(REFERENCE_ABSOLUTE);
70:
71:            Integer REFERENCE_RELATIVE_INTEGER = new Integer(REFERENCE_RELATIVE);
72:
73:            int TEMP_CONTENT_FORM_TYPE = 42; // Typ fuer temporaere forms in der DB
74:            int STRUCTURE_FORM_TYPE = 66; // Typ fuer structure forms in der DB
75:
76:            int FRAGMENT_FORM_TYPE = 67;
77:            int CONTENT_FORM_TYPE = 69;
78:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.