Source Code Cross Referenced for NameIDType.java in  » 6.0-JDK-Modules-com.sun » xws-security » com » sun » xml » wss » saml » internal » saml20 » jaxb20 » 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 » 6.0 JDK Modules com.sun » xws security » com.sun.xml.wss.saml.internal.saml20.jaxb20 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        //
002:        // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-3509 
003:        // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
004:        // Any modifications to this file will be lost upon recompilation of the source schema. 
005:        // Generated on: 2006.09.12 at 08:57:41 PM IST 
006:        //
007:
008:        package com.sun.xml.wss.saml.internal.saml20.jaxb20;
009:
010:        import javax.xml.bind.annotation.XmlAccessType;
011:        import javax.xml.bind.annotation.XmlAccessorType;
012:        import javax.xml.bind.annotation.XmlAttribute;
013:        import javax.xml.bind.annotation.XmlRootElement;
014:        import javax.xml.bind.annotation.XmlType;
015:        import javax.xml.bind.annotation.XmlValue;
016:
017:        /**
018:         * <p>Java class for NameIDType complex type.
019:         * 
020:         * <p>The following schema fragment specifies the expected content contained within this class.
021:         * 
022:         * <pre>
023:         * &lt;complexType name="NameIDType">
024:         *   &lt;simpleContent>
025:         *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
026:         *       &lt;attGroup ref="{urn:oasis:names:tc:SAML:2.0:assertion}IDNameQualifiers"/>
027:         *       &lt;attribute name="Format" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
028:         *       &lt;attribute name="SPProvidedID" type="{http://www.w3.org/2001/XMLSchema}string" />
029:         *     &lt;/extension>
030:         *   &lt;/simpleContent>
031:         * &lt;/complexType>
032:         * </pre>
033:         * 
034:         * 
035:         */
036:        @XmlRootElement(name="NameID")
037:        @XmlAccessorType(XmlAccessType.FIELD)
038:        @XmlType(name="NameIDType",propOrder={"value"})
039:        public class NameIDType {
040:
041:            @XmlValue
042:            protected String value;
043:            @XmlAttribute(name="Format")
044:            protected String format;
045:            @XmlAttribute(name="SPProvidedID")
046:            protected String spProvidedID;
047:            @XmlAttribute(name="NameQualifier")
048:            protected String nameQualifier;
049:            @XmlAttribute(name="SPNameQualifier")
050:            protected String spNameQualifier;
051:
052:            /**
053:             * Gets the value of the value property.
054:             * 
055:             * @return
056:             *     possible object is
057:             *     {@link String }
058:             *     
059:             */
060:            public String getValue() {
061:                return value;
062:            }
063:
064:            /**
065:             * Sets the value of the value property.
066:             * 
067:             * @param value
068:             *     allowed object is
069:             *     {@link String }
070:             *     
071:             */
072:            public void setValue(String value) {
073:                this .value = value;
074:            }
075:
076:            /**
077:             * Gets the value of the format property.
078:             * 
079:             * @return
080:             *     possible object is
081:             *     {@link String }
082:             *     
083:             */
084:            public String getFormat() {
085:                return format;
086:            }
087:
088:            /**
089:             * Sets the value of the format property.
090:             * 
091:             * @param value
092:             *     allowed object is
093:             *     {@link String }
094:             *     
095:             */
096:            public void setFormat(String value) {
097:                this .format = value;
098:            }
099:
100:            /**
101:             * Gets the value of the spProvidedID property.
102:             * 
103:             * @return
104:             *     possible object is
105:             *     {@link String }
106:             *     
107:             */
108:            public String getSPProvidedID() {
109:                return spProvidedID;
110:            }
111:
112:            /**
113:             * Sets the value of the spProvidedID property.
114:             * 
115:             * @param value
116:             *     allowed object is
117:             *     {@link String }
118:             *     
119:             */
120:            public void setSPProvidedID(String value) {
121:                this .spProvidedID = value;
122:            }
123:
124:            /**
125:             * Gets the value of the nameQualifier property.
126:             * 
127:             * @return
128:             *     possible object is
129:             *     {@link String }
130:             *     
131:             */
132:            public String getNameQualifier() {
133:                return nameQualifier;
134:            }
135:
136:            /**
137:             * Sets the value of the nameQualifier property.
138:             * 
139:             * @param value
140:             *     allowed object is
141:             *     {@link String }
142:             *     
143:             */
144:            public void setNameQualifier(String value) {
145:                this .nameQualifier = value;
146:            }
147:
148:            /**
149:             * Gets the value of the spNameQualifier property.
150:             * 
151:             * @return
152:             *     possible object is
153:             *     {@link String }
154:             *     
155:             */
156:            public String getSPNameQualifier() {
157:                return spNameQualifier;
158:            }
159:
160:            /**
161:             * Sets the value of the spNameQualifier property.
162:             * 
163:             * @param value
164:             *     allowed object is
165:             *     {@link String }
166:             *     
167:             */
168:            public void setSPNameQualifier(String value) {
169:                this.spNameQualifier = value;
170:            }
171:
172:        }
w__w__w__._j___av___a___2s__._c__o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.