Source Code Cross Referenced for EnvironmentType.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:         * <p>Java class for environmentType complex type.
025:         * 
026:         * <p>The following schema fragment specifies the expected content contained within this class.
027:         * 
028:         * <pre>
029:         * &lt;complexType name="environmentType">
030:         *   &lt;complexContent>
031:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
032:         *       &lt;sequence>
033:         *         &lt;element name="moduleId" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}artifactType" minOccurs="0"/>
034:         *         &lt;element name="dependencies" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}dependenciesType" minOccurs="0"/>
035:         *         &lt;element name="hidden-classes" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}classFilterType" minOccurs="0"/>
036:         *         &lt;element name="non-overridable-classes" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}classFilterType" minOccurs="0"/>
037:         *         &lt;element name="inverse-classloading" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}emptyType" minOccurs="0"/>
038:         *         &lt;element name="suppress-default-environment" type="{http://geronimo.apache.org/xml/ns/deployment-1.2}emptyType" minOccurs="0"/>
039:         *       &lt;/sequence>
040:         *     &lt;/restriction>
041:         *   &lt;/complexContent>
042:         * &lt;/complexType>
043:         * </pre>
044:         * 
045:         * 
046:         */
047:        @XmlAccessorType(XmlAccessType.FIELD)
048:        @XmlType(name="environmentType",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2",propOrder={"moduleId","dependencies","hiddenClasses","nonOverridableClasses","inverseClassloading","suppressDefaultEnvironment"})
049:        public class EnvironmentType {
050:
051:            @XmlElement(name="moduleId",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
052:            protected ArtifactType moduleId;
053:            @XmlElement(name="dependencies",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
054:            protected DependenciesType dependencies;
055:            @XmlElement(name="hidden-classes",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
056:            protected ClassFilterType hiddenClasses;
057:            @XmlElement(name="non-overridable-classes",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
058:            protected ClassFilterType nonOverridableClasses;
059:            @XmlElement(name="inverse-classloading",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
060:            protected EmptyType inverseClassloading;
061:            @XmlElement(name="suppress-default-environment",namespace="http://geronimo.apache.org/xml/ns/deployment-1.2")
062:            protected EmptyType suppressDefaultEnvironment;
063:
064:            /**
065:             * Gets the value of the moduleId property.
066:             * 
067:             * @return
068:             *     possible object is
069:             *     {@link ArtifactType }
070:             *     
071:             */
072:            public ArtifactType getModuleId() {
073:                return moduleId;
074:            }
075:
076:            /**
077:             * Sets the value of the moduleId property.
078:             * 
079:             * @param value
080:             *     allowed object is
081:             *     {@link ArtifactType }
082:             *     
083:             */
084:            public void setModuleId(ArtifactType value) {
085:                this .moduleId = value;
086:            }
087:
088:            /**
089:             * Gets the value of the dependencies property.
090:             * 
091:             * @return
092:             *     possible object is
093:             *     {@link DependenciesType }
094:             *     
095:             */
096:            public DependenciesType getDependencies() {
097:                return dependencies;
098:            }
099:
100:            /**
101:             * Sets the value of the dependencies property.
102:             * 
103:             * @param value
104:             *     allowed object is
105:             *     {@link DependenciesType }
106:             *     
107:             */
108:            public void setDependencies(DependenciesType value) {
109:                this .dependencies = value;
110:            }
111:
112:            /**
113:             * Gets the value of the hiddenClasses property.
114:             * 
115:             * @return
116:             *     possible object is
117:             *     {@link ClassFilterType }
118:             *     
119:             */
120:            public ClassFilterType getHiddenClasses() {
121:                return hiddenClasses;
122:            }
123:
124:            /**
125:             * Sets the value of the hiddenClasses property.
126:             * 
127:             * @param value
128:             *     allowed object is
129:             *     {@link ClassFilterType }
130:             *     
131:             */
132:            public void setHiddenClasses(ClassFilterType value) {
133:                this .hiddenClasses = value;
134:            }
135:
136:            /**
137:             * Gets the value of the nonOverridableClasses property.
138:             * 
139:             * @return
140:             *     possible object is
141:             *     {@link ClassFilterType }
142:             *     
143:             */
144:            public ClassFilterType getNonOverridableClasses() {
145:                return nonOverridableClasses;
146:            }
147:
148:            /**
149:             * Sets the value of the nonOverridableClasses property.
150:             * 
151:             * @param value
152:             *     allowed object is
153:             *     {@link ClassFilterType }
154:             *     
155:             */
156:            public void setNonOverridableClasses(ClassFilterType value) {
157:                this .nonOverridableClasses = value;
158:            }
159:
160:            /**
161:             * Gets the value of the inverseClassloading property.
162:             * 
163:             * @return
164:             *     possible object is
165:             *     {@link boolean }
166:             *     
167:             */
168:            public boolean isInverseClassloading() {
169:                return inverseClassloading != null;
170:            }
171:
172:            /**
173:             * Sets the value of the inverseClassloading property.
174:             * 
175:             * @param value
176:             *     allowed object is
177:             *     {@link boolean }
178:             *     
179:             */
180:            public void setInverseClassloading(boolean value) {
181:                this .inverseClassloading = value ? new EmptyType() : null;
182:            }
183:
184:            /**
185:             * Gets the value of the suppressDefaultEnvironment property.
186:             * 
187:             * @return
188:             *     possible object is
189:             *     {@link boolean }
190:             *     
191:             */
192:            public boolean isSuppressDefaultEnvironment() {
193:                return suppressDefaultEnvironment != null;
194:            }
195:
196:            /**
197:             * Sets the value of the suppressDefaultEnvironment property.
198:             * 
199:             * @param value
200:             *     allowed object is
201:             *     {@link boolean }
202:             *     
203:             */
204:            public void setSuppressDefaultEnvironment(boolean value) {
205:                this .suppressDefaultEnvironment = value ? new EmptyType()
206:                        : null;
207:            }
208:
209:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.