Source Code Cross Referenced for KeyGeneratorType.java in  » J2EE » openejb3 » org » apache » openejb » jee » oejb2 » 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 » J2EE » openejb3 » org.apache.openejb.jee.oejb2 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * Licensed to the Apache Software Foundation (ASF) under one or more
003:         * contributor license agreements.  See the NOTICE file distributed with
004:         * this work for additional information regarding copyright ownership.
005:         * The ASF licenses this file to You under the Apache License, Version 2.0
006:         * (the "License"); you may not use this file except in compliance with
007:         * the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         * Unless required by applicable law or agreed to in writing, software
012:         * distributed under the License is distributed on an "AS IS" BASIS,
013:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         * See the License for the specific language governing permissions and
015:         * limitations under the License.
016:         */package org.apache.openejb.jee.oejb2;
017:
018:        import javax.xml.bind.annotation.XmlAccessType;
019:        import javax.xml.bind.annotation.XmlAccessorType;
020:        import javax.xml.bind.annotation.XmlElement;
021:        import javax.xml.bind.annotation.XmlType;
022:
023:        /**
024:         * 
025:         *               Primary Key generation element.
026:         * 
027:         *               If this is present, a key generator GBean will be created
028:         *               and configured to generate IDs for the surrounding object.
029:         *             
030:         * 
031:         * <p>Java class for key-generatorType complex type.
032:         * 
033:         * <p>The following schema fragment specifies the expected content contained within this class.
034:         * 
035:         * <pre>
036:         * &lt;complexType name="key-generatorType">
037:         *   &lt;complexContent>
038:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
039:         *       &lt;choice>
040:         *         &lt;element name="uuid" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}emptyType"/>
041:         *         &lt;element name="sequence-table" type="{http://openejb.apache.org/xml/ns/pkgen-2.1}sequence-tableType"/>
042:         *         &lt;element name="auto-increment-table" type="{http://openejb.apache.org/xml/ns/pkgen-2.1}auto-increment-tableType"/>
043:         *         &lt;element name="sql-generator" type="{http://openejb.apache.org/xml/ns/pkgen-2.1}sql-generatorType"/>
044:         *         &lt;element name="custom-generator" type="{http://openejb.apache.org/xml/ns/pkgen-2.1}custom-generatorType"/>
045:         *       &lt;/choice>
046:         *     &lt;/restriction>
047:         *   &lt;/complexContent>
048:         * &lt;/complexType>
049:         * </pre>
050:         * 
051:         * 
052:         */
053:        @XmlAccessorType(XmlAccessType.FIELD)
054:        @XmlType(name="key-generatorType",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1",propOrder={"uuid","sequenceTable","autoIncrementTable","sqlGenerator","customGenerator"})
055:        public class KeyGeneratorType {
056:
057:            @XmlElement(name="uuid",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1")
058:            protected EmptyType uuid;
059:            @XmlElement(name="sequence-table",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1")
060:            protected SequenceTableType sequenceTable;
061:            @XmlElement(name="auto-increment-table",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1")
062:            protected AutoIncrementTableType autoIncrementTable;
063:            @XmlElement(name="sql-generator",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1")
064:            protected SqlGeneratorType sqlGenerator;
065:            @XmlElement(name="custom-generator",namespace="http://openejb.apache.org/xml/ns/pkgen-2.1")
066:            protected CustomGeneratorType customGenerator;
067:
068:            /**
069:             * Gets the value of the uuid property.
070:             * 
071:             * @return
072:             *     possible object is
073:             *     {@link boolean }
074:             *     
075:             */
076:            public boolean isUuid() {
077:                return uuid != null;
078:            }
079:
080:            /**
081:             * Sets the value of the uuid property.
082:             * 
083:             * @param value
084:             *     allowed object is
085:             *     {@link boolean }
086:             *     
087:             */
088:            public void setUuid(boolean value) {
089:                this .uuid = value ? new EmptyType() : null;
090:            }
091:
092:            /**
093:             * Gets the value of the sequenceTable property.
094:             * 
095:             * @return
096:             *     possible object is
097:             *     {@link SequenceTableType }
098:             *     
099:             */
100:            public SequenceTableType getSequenceTable() {
101:                return sequenceTable;
102:            }
103:
104:            /**
105:             * Sets the value of the sequenceTable property.
106:             * 
107:             * @param value
108:             *     allowed object is
109:             *     {@link SequenceTableType }
110:             *     
111:             */
112:            public void setSequenceTable(SequenceTableType value) {
113:                this .sequenceTable = value;
114:            }
115:
116:            /**
117:             * Gets the value of the autoIncrementTable property.
118:             * 
119:             * @return
120:             *     possible object is
121:             *     {@link AutoIncrementTableType }
122:             *     
123:             */
124:            public AutoIncrementTableType getAutoIncrementTable() {
125:                return autoIncrementTable;
126:            }
127:
128:            /**
129:             * Sets the value of the autoIncrementTable property.
130:             * 
131:             * @param value
132:             *     allowed object is
133:             *     {@link AutoIncrementTableType }
134:             *     
135:             */
136:            public void setAutoIncrementTable(AutoIncrementTableType value) {
137:                this .autoIncrementTable = value;
138:            }
139:
140:            /**
141:             * Gets the value of the sqlGenerator property.
142:             * 
143:             * @return
144:             *     possible object is
145:             *     {@link SqlGeneratorType }
146:             *     
147:             */
148:            public SqlGeneratorType getSqlGenerator() {
149:                return sqlGenerator;
150:            }
151:
152:            /**
153:             * Sets the value of the sqlGenerator property.
154:             * 
155:             * @param value
156:             *     allowed object is
157:             *     {@link SqlGeneratorType }
158:             *     
159:             */
160:            public void setSqlGenerator(SqlGeneratorType value) {
161:                this .sqlGenerator = value;
162:            }
163:
164:            /**
165:             * Gets the value of the customGenerator property.
166:             * 
167:             * @return
168:             *     possible object is
169:             *     {@link CustomGeneratorType }
170:             *     
171:             */
172:            public CustomGeneratorType getCustomGenerator() {
173:                return customGenerator;
174:            }
175:
176:            /**
177:             * Sets the value of the customGenerator property.
178:             * 
179:             * @param value
180:             *     allowed object is
181:             *     {@link CustomGeneratorType }
182:             *     
183:             */
184:            public void setCustomGenerator(CustomGeneratorType value) {
185:                this.customGenerator = value;
186:            }
187:
188:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.