Source Code Cross Referenced for EncryptedType.java in  » Authentication-Authorization » ejbca » org » w3 » _2001 » _04 » xmlenc_ » 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 » Authentication Authorization » ejbca » org.w3._2001._04.xmlenc_ 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.w3._2001._04.xmlenc_;
002:
003:        import javax.xml.bind.annotation.XmlAccessType;
004:        import javax.xml.bind.annotation.XmlAccessorType;
005:        import javax.xml.bind.annotation.XmlAttribute;
006:        import javax.xml.bind.annotation.XmlElement;
007:        import javax.xml.bind.annotation.XmlID;
008:        import javax.xml.bind.annotation.XmlSchemaType;
009:        import javax.xml.bind.annotation.XmlType;
010:        import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
011:        import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
012:
013:        import org.w3._2000._09.xmldsig_.KeyInfoType;
014:
015:        /**
016:         * <p>Java class for EncryptedType complex type.
017:         * 
018:         * <p>The following schema fragment specifies the expected content contained within this class.
019:         * 
020:         * <pre>
021:         * &lt;complexType name="EncryptedType">
022:         *   &lt;complexContent>
023:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
024:         *       &lt;sequence>
025:         *         &lt;element name="EncryptionMethod" type="{http://www.w3.org/2001/04/xmlenc#}EncryptionMethodType" minOccurs="0"/>
026:         *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/>
027:         *         &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}CipherData"/>
028:         *         &lt;element ref="{http://www.w3.org/2001/04/xmlenc#}EncryptionProperties" minOccurs="0"/>
029:         *       &lt;/sequence>
030:         *       &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
031:         *       &lt;attribute name="Type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
032:         *       &lt;attribute name="MimeType" type="{http://www.w3.org/2001/XMLSchema}string" />
033:         *       &lt;attribute name="Encoding" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
034:         *     &lt;/restriction>
035:         *   &lt;/complexContent>
036:         * &lt;/complexType>
037:         * </pre>
038:         * 
039:         * 
040:         */
041:        @XmlAccessorType(XmlAccessType.FIELD)
042:        @XmlType(name="EncryptedType",propOrder={"encryptionMethod","keyInfo","cipherData","encryptionProperties"})
043:        /*@XmlSeeAlso({
044:         EncryptedDataType.class,
045:         EncryptedKeyType.class
046:         })*/
047:        public abstract class EncryptedType {
048:
049:            @XmlElement(name="EncryptionMethod")
050:            protected EncryptionMethodType encryptionMethod;
051:            @XmlElement(name="KeyInfo",namespace="http://www.w3.org/2000/09/xmldsig#")
052:            protected KeyInfoType keyInfo;
053:            @XmlElement(name="CipherData",required=true)
054:            protected CipherDataType cipherData;
055:            @XmlElement(name="EncryptionProperties")
056:            protected EncryptionPropertiesType encryptionProperties;
057:            @XmlAttribute(name="Id")
058:            @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
059:            @XmlID
060:            @XmlSchemaType(name="ID")
061:            protected String id;
062:            @XmlAttribute(name="Type")
063:            @XmlSchemaType(name="anyURI")
064:            protected String type;
065:            @XmlAttribute(name="MimeType")
066:            protected String mimeType;
067:            @XmlAttribute(name="Encoding")
068:            @XmlSchemaType(name="anyURI")
069:            protected String encoding;
070:
071:            /**
072:             * Gets the value of the encryptionMethod property.
073:             * 
074:             * @return
075:             *     possible object is
076:             *     {@link EncryptionMethodType }
077:             *     
078:             */
079:            public EncryptionMethodType getEncryptionMethod() {
080:                return encryptionMethod;
081:            }
082:
083:            /**
084:             * Sets the value of the encryptionMethod property.
085:             * 
086:             * @param value
087:             *     allowed object is
088:             *     {@link EncryptionMethodType }
089:             *     
090:             */
091:            public void setEncryptionMethod(EncryptionMethodType value) {
092:                this .encryptionMethod = value;
093:            }
094:
095:            /**
096:             * Gets the value of the keyInfo property.
097:             * 
098:             * @return
099:             *     possible object is
100:             *     {@link KeyInfoType }
101:             *     
102:             */
103:            public KeyInfoType getKeyInfo() {
104:                return keyInfo;
105:            }
106:
107:            /**
108:             * Sets the value of the keyInfo property.
109:             * 
110:             * @param value
111:             *     allowed object is
112:             *     {@link KeyInfoType }
113:             *     
114:             */
115:            public void setKeyInfo(KeyInfoType value) {
116:                this .keyInfo = value;
117:            }
118:
119:            /**
120:             * Gets the value of the cipherData property.
121:             * 
122:             * @return
123:             *     possible object is
124:             *     {@link CipherDataType }
125:             *     
126:             */
127:            public CipherDataType getCipherData() {
128:                return cipherData;
129:            }
130:
131:            /**
132:             * Sets the value of the cipherData property.
133:             * 
134:             * @param value
135:             *     allowed object is
136:             *     {@link CipherDataType }
137:             *     
138:             */
139:            public void setCipherData(CipherDataType value) {
140:                this .cipherData = value;
141:            }
142:
143:            /**
144:             * Gets the value of the encryptionProperties property.
145:             * 
146:             * @return
147:             *     possible object is
148:             *     {@link EncryptionPropertiesType }
149:             *     
150:             */
151:            public EncryptionPropertiesType getEncryptionProperties() {
152:                return encryptionProperties;
153:            }
154:
155:            /**
156:             * Sets the value of the encryptionProperties property.
157:             * 
158:             * @param value
159:             *     allowed object is
160:             *     {@link EncryptionPropertiesType }
161:             *     
162:             */
163:            public void setEncryptionProperties(EncryptionPropertiesType value) {
164:                this .encryptionProperties = value;
165:            }
166:
167:            /**
168:             * Gets the value of the id property.
169:             * 
170:             * @return
171:             *     possible object is
172:             *     {@link String }
173:             *     
174:             */
175:            public String getId() {
176:                return id;
177:            }
178:
179:            /**
180:             * Sets the value of the id property.
181:             * 
182:             * @param value
183:             *     allowed object is
184:             *     {@link String }
185:             *     
186:             */
187:            public void setId(String value) {
188:                this .id = value;
189:            }
190:
191:            /**
192:             * Gets the value of the type property.
193:             * 
194:             * @return
195:             *     possible object is
196:             *     {@link String }
197:             *     
198:             */
199:            public String getType() {
200:                return type;
201:            }
202:
203:            /**
204:             * Sets the value of the type property.
205:             * 
206:             * @param value
207:             *     allowed object is
208:             *     {@link String }
209:             *     
210:             */
211:            public void setType(String value) {
212:                this .type = value;
213:            }
214:
215:            /**
216:             * Gets the value of the mimeType property.
217:             * 
218:             * @return
219:             *     possible object is
220:             *     {@link String }
221:             *     
222:             */
223:            public String getMimeType() {
224:                return mimeType;
225:            }
226:
227:            /**
228:             * Sets the value of the mimeType property.
229:             * 
230:             * @param value
231:             *     allowed object is
232:             *     {@link String }
233:             *     
234:             */
235:            public void setMimeType(String value) {
236:                this .mimeType = value;
237:            }
238:
239:            /**
240:             * Gets the value of the encoding property.
241:             * 
242:             * @return
243:             *     possible object is
244:             *     {@link String }
245:             *     
246:             */
247:            public String getEncoding() {
248:                return encoding;
249:            }
250:
251:            /**
252:             * Sets the value of the encoding property.
253:             * 
254:             * @param value
255:             *     allowed object is
256:             *     {@link String }
257:             *     
258:             */
259:            public void setEncoding(String value) {
260:                this.encoding = value;
261:            }
262:
263:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.