Source Code Cross Referenced for AuthnStatementType.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.XmlElement;
014:        import javax.xml.bind.annotation.XmlRootElement;
015:        import javax.xml.bind.annotation.XmlType;
016:        import javax.xml.datatype.XMLGregorianCalendar;
017:
018:        /**
019:         * <p>Java class for AuthnStatementType complex type.
020:         * 
021:         * <p>The following schema fragment specifies the expected content contained within this class.
022:         * 
023:         * <pre>
024:         * &lt;complexType name="AuthnStatementType">
025:         *   &lt;complexContent>
026:         *     &lt;extension base="{urn:oasis:names:tc:SAML:2.0:assertion}StatementAbstractType">
027:         *       &lt;sequence>
028:         *         &lt;element ref="{urn:oasis:names:tc:SAML:2.0:assertion}SubjectLocality" minOccurs="0"/>
029:         *         &lt;element ref="{urn:oasis:names:tc:SAML:2.0:assertion}AuthnContext"/>
030:         *       &lt;/sequence>
031:         *       &lt;attribute name="AuthnInstant" use="required" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
032:         *       &lt;attribute name="SessionIndex" type="{http://www.w3.org/2001/XMLSchema}string" />
033:         *       &lt;attribute name="SessionNotOnOrAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime" />
034:         *     &lt;/extension>
035:         *   &lt;/complexContent>
036:         * &lt;/complexType>
037:         * </pre>
038:         * 
039:         * 
040:         */
041:        @XmlRootElement(name="AuthnStatement")
042:        @XmlAccessorType(XmlAccessType.FIELD)
043:        @XmlType(name="AuthnStatementType",propOrder={"subjectLocality","authnContext"})
044:        public class AuthnStatementType extends StatementAbstractType {
045:
046:            @XmlElement(name="SubjectLocality")
047:            protected SubjectLocalityType subjectLocality;
048:            @XmlElement(name="AuthnContext",required=true)
049:            protected AuthnContextType authnContext;
050:            @XmlAttribute(name="AuthnInstant",required=true)
051:            protected XMLGregorianCalendar authnInstant;
052:            @XmlAttribute(name="SessionIndex")
053:            protected String sessionIndex;
054:            @XmlAttribute(name="SessionNotOnOrAfter")
055:            protected XMLGregorianCalendar sessionNotOnOrAfter;
056:
057:            /**
058:             * Gets the value of the subjectLocality property.
059:             * 
060:             * @return
061:             *     possible object is
062:             *     {@link SubjectLocalityType }
063:             *     
064:             */
065:            public SubjectLocalityType getSubjectLocality() {
066:                return subjectLocality;
067:            }
068:
069:            /**
070:             * Sets the value of the subjectLocality property.
071:             * 
072:             * @param value
073:             *     allowed object is
074:             *     {@link SubjectLocalityType }
075:             *     
076:             */
077:            public void setSubjectLocality(SubjectLocalityType value) {
078:                this .subjectLocality = value;
079:            }
080:
081:            /**
082:             * Gets the value of the authnContext property.
083:             * 
084:             * @return
085:             *     possible object is
086:             *     {@link AuthnContextType }
087:             *     
088:             */
089:            public AuthnContextType getAuthnContext() {
090:                return authnContext;
091:            }
092:
093:            /**
094:             * Sets the value of the authnContext property.
095:             * 
096:             * @param value
097:             *     allowed object is
098:             *     {@link AuthnContextType }
099:             *     
100:             */
101:            public void setAuthnContext(AuthnContextType value) {
102:                this .authnContext = value;
103:            }
104:
105:            /**
106:             * Gets the value of the authnInstant property.
107:             * 
108:             * @return
109:             *     possible object is
110:             *     {@link XMLGregorianCalendar }
111:             *     
112:             */
113:            public XMLGregorianCalendar getAuthnInstant() {
114:                return authnInstant;
115:            }
116:
117:            /**
118:             * Sets the value of the authnInstant property.
119:             * 
120:             * @param value
121:             *     allowed object is
122:             *     {@link XMLGregorianCalendar }
123:             *     
124:             */
125:            public void setAuthnInstant(XMLGregorianCalendar value) {
126:                this .authnInstant = value;
127:            }
128:
129:            /**
130:             * Gets the value of the sessionIndex property.
131:             * 
132:             * @return
133:             *     possible object is
134:             *     {@link String }
135:             *     
136:             */
137:            public String getSessionIndex() {
138:                return sessionIndex;
139:            }
140:
141:            /**
142:             * Sets the value of the sessionIndex property.
143:             * 
144:             * @param value
145:             *     allowed object is
146:             *     {@link String }
147:             *     
148:             */
149:            public void setSessionIndex(String value) {
150:                this .sessionIndex = value;
151:            }
152:
153:            /**
154:             * Gets the value of the sessionNotOnOrAfter property.
155:             * 
156:             * @return
157:             *     possible object is
158:             *     {@link XMLGregorianCalendar }
159:             *     
160:             */
161:            public XMLGregorianCalendar getSessionNotOnOrAfter() {
162:                return sessionNotOnOrAfter;
163:            }
164:
165:            /**
166:             * Sets the value of the sessionNotOnOrAfter property.
167:             * 
168:             * @param value
169:             *     allowed object is
170:             *     {@link XMLGregorianCalendar }
171:             *     
172:             */
173:            public void setSessionNotOnOrAfter(XMLGregorianCalendar value) {
174:                this.sessionNotOnOrAfter = value;
175:            }
176:
177:        }
w_ww___._j_a__v__a_2___s___.co__m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.