Source Code Cross Referenced for KeyBindingAbstractType.java in  » Authentication-Authorization » ejbca » org » w3 » _2002 » _03 » xkms_ » 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._2002._03.xkms_ 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.w3._2002._03.xkms_;
002:
003:        import java.util.ArrayList;
004:        import java.util.List;
005:
006:        import javax.xml.bind.annotation.XmlAccessType;
007:        import javax.xml.bind.annotation.XmlAccessorType;
008:        import javax.xml.bind.annotation.XmlAttribute;
009:        import javax.xml.bind.annotation.XmlElement;
010:        import javax.xml.bind.annotation.XmlID;
011:        import javax.xml.bind.annotation.XmlSchemaType;
012:        import javax.xml.bind.annotation.XmlType;
013:        import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
014:        import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
015:
016:        import org.w3._2000._09.xmldsig_.KeyInfoType;
017:
018:        /**
019:         * <p>Java class for KeyBindingAbstractType complex type.
020:         * 
021:         * <p>The following schema fragment specifies the expected content contained within this class.
022:         * 
023:         * <pre>
024:         * &lt;complexType name="KeyBindingAbstractType">
025:         *   &lt;complexContent>
026:         *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
027:         *       &lt;sequence>
028:         *         &lt;element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo" minOccurs="0"/>
029:         *         &lt;element ref="{http://www.w3.org/2002/03/xkms#}KeyUsage" maxOccurs="3" minOccurs="0"/>
030:         *         &lt;element ref="{http://www.w3.org/2002/03/xkms#}UseKeyWith" maxOccurs="unbounded" minOccurs="0"/>
031:         *       &lt;/sequence>
032:         *       &lt;attribute name="Id" type="{http://www.w3.org/2001/XMLSchema}ID" />
033:         *     &lt;/restriction>
034:         *   &lt;/complexContent>
035:         * &lt;/complexType>
036:         * </pre>
037:         * 
038:         * 
039:         */
040:        @XmlAccessorType(XmlAccessType.FIELD)
041:        @XmlType(name="KeyBindingAbstractType",propOrder={"keyInfo","keyUsage","useKeyWith"})
042:        /*@XmlSeeAlso({
043:         QueryKeyBindingType.class,
044:         PrototypeKeyBindingType.class,
045:         UnverifiedKeyBindingType.class
046:         })*/
047:        public abstract class KeyBindingAbstractType {
048:
049:            @XmlElement(name="KeyInfo",namespace="http://www.w3.org/2000/09/xmldsig#")
050:            protected KeyInfoType keyInfo;
051:            @XmlElement(name="KeyUsage")
052:            protected List<String> keyUsage;
053:            @XmlElement(name="UseKeyWith")
054:            protected List<UseKeyWithType> useKeyWith;
055:            @XmlAttribute(name="Id")
056:            @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
057:            @XmlID
058:            @XmlSchemaType(name="ID")
059:            protected String id;
060:
061:            /**
062:             * Gets the value of the keyInfo property.
063:             * 
064:             * @return
065:             *     possible object is
066:             *     {@link KeyInfoType }
067:             *     
068:             */
069:            public KeyInfoType getKeyInfo() {
070:                return keyInfo;
071:            }
072:
073:            /**
074:             * Sets the value of the keyInfo property.
075:             * 
076:             * @param value
077:             *     allowed object is
078:             *     {@link KeyInfoType }
079:             *     
080:             */
081:            public void setKeyInfo(KeyInfoType value) {
082:                this .keyInfo = value;
083:            }
084:
085:            /**
086:             * Gets the value of the keyUsage property.
087:             * 
088:             * <p>
089:             * This accessor method returns a reference to the live list,
090:             * not a snapshot. Therefore any modification you make to the
091:             * returned list will be present inside the JAXB object.
092:             * This is why there is not a <CODE>set</CODE> method for the keyUsage property.
093:             * 
094:             * <p>
095:             * For example, to add a new item, do as follows:
096:             * <pre>
097:             *    getKeyUsage().add(newItem);
098:             * </pre>
099:             * 
100:             * 
101:             * <p>
102:             * Objects of the following type(s) are allowed in the list
103:             * {@link String }
104:             * 
105:             * 
106:             */
107:            public List<String> getKeyUsage() {
108:                if (keyUsage == null) {
109:                    keyUsage = new ArrayList<String>();
110:                }
111:                return this .keyUsage;
112:            }
113:
114:            /**
115:             * Gets the value of the useKeyWith property.
116:             * 
117:             * <p>
118:             * This accessor method returns a reference to the live list,
119:             * not a snapshot. Therefore any modification you make to the
120:             * returned list will be present inside the JAXB object.
121:             * This is why there is not a <CODE>set</CODE> method for the useKeyWith property.
122:             * 
123:             * <p>
124:             * For example, to add a new item, do as follows:
125:             * <pre>
126:             *    getUseKeyWith().add(newItem);
127:             * </pre>
128:             * 
129:             * 
130:             * <p>
131:             * Objects of the following type(s) are allowed in the list
132:             * {@link UseKeyWithType }
133:             * 
134:             * 
135:             */
136:            public List<UseKeyWithType> getUseKeyWith() {
137:                if (useKeyWith == null) {
138:                    useKeyWith = new ArrayList<UseKeyWithType>();
139:                }
140:                return this .useKeyWith;
141:            }
142:
143:            /**
144:             * Gets the value of the id property.
145:             * 
146:             * @return
147:             *     possible object is
148:             *     {@link String }
149:             *     
150:             */
151:            public String getId() {
152:                return id;
153:            }
154:
155:            /**
156:             * Sets the value of the id property.
157:             * 
158:             * @param value
159:             *     allowed object is
160:             *     {@link String }
161:             *     
162:             */
163:            public void setId(String value) {
164:                this.id = value;
165:            }
166:
167:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.