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


001:        /*
002:         * The contents of this file are subject to the terms
003:         * of the Common Development and Distribution License
004:         * (the License).  You may not use this file except in
005:         * compliance with the License.
006:         * 
007:         * You can obtain a copy of the license at
008:         * https://glassfish.dev.java.net/public/CDDLv1.0.html.
009:         * See the License for the specific language governing
010:         * permissions and limitations under the License.
011:         * 
012:         * When distributing Covered Code, include this CDDL
013:         * Header Notice in each file and include the License file
014:         * at https://glassfish.dev.java.net/public/CDDLv1.0.html.
015:         * If applicable, add the following below the CDDL Header,
016:         * with the fields enclosed by brackets [] replaced by
017:         * you own identifying information:
018:         * "Portions Copyrighted [year] [name of copyright owner]"
019:         * 
020:         * Copyright 2006 Sun Microsystems Inc. All Rights Reserved
021:         */
022:
023:        /*
024:         * SecurityTokenReference.java
025:         *
026:         * Created on October 19, 2005, 12:56 PM
027:         *
028:         * To change this template, choose Tools | Template Manager
029:         * and open the template in the editor.
030:         */
031:
032:        package com.sun.xml.ws.security;
033:
034:        import java.util.List;
035:
036:        /**
037:         * TODO: refine/define the methods in this interface
038:         * @author root
039:         */
040:        public interface SecurityTokenReference extends Token {
041:            /**
042:             * Gets the value of the any property.
043:             * 
044:             * <p>
045:             * This accessor method returns a reference to the live list,
046:             * not a snapshot. Therefore any modification you make to the
047:             * returned list will be present inside the JAXB object.
048:             * This is why there is not a <CODE>set</CODE> method for the any property.
049:             * 
050:             * <p>
051:             * For example, to add a new item, do as follows:
052:             * <pre>
053:             *    getAny().add(newItem);
054:             * </pre>
055:             * 
056:             * 
057:             * <p>
058:             * Objects of the following type(s) are allowed in the list
059:             * {@link Element }
060:             * {@link Object }
061:             * 
062:             * 
063:             */
064:            List getAny();
065:
066:            /**
067:             * Gets the value of the id property.
068:             * 
069:             * @return
070:             *     possible object is
071:             *     {@link String }
072:             *     
073:             */
074:            String getId();
075:
076:            /**
077:             * Gets a map that contains attributes that aren't bound to any typed property on this class.
078:             * 
079:             * <p>
080:             * the map is keyed by the name of the attribute and 
081:             * the value is the string value of the attribute.
082:             * 
083:             * the map returned by this method is live, and you can add new attribute
084:             * by updating the map directly. Because of this design, there's no setter.
085:             * 
086:             * 
087:             * @return
088:             *     always non-null
089:             */
090:            //Map<QName, String> getOtherAttributes();
091:            /**
092:             * Gets the value of the usage property.
093:             * 
094:             * <p>
095:             * This accessor method returns a reference to the live list,
096:             * not a snapshot. Therefore any modification you make to the
097:             * returned list will be present inside the JAXB object.
098:             * This is why there is not a <CODE>set</CODE> method for the usage property.
099:             * 
100:             * <p>
101:             * For example, to add a new item, do as follows:
102:             * <pre>
103:             *    getUsage().add(newItem);
104:             * </pre>
105:             * 
106:             * 
107:             * <p>
108:             * Objects of the following type(s) are allowed in the list
109:             * {@link String }
110:             * 
111:             * 
112:             */
113:            //List<String> getUsage();
114:            /**
115:             * Sets the value of the id property.
116:             * 
117:             * @param value
118:             *     allowed object is
119:             *     {@link String }
120:             *     
121:             */
122:            void setId(String value);
123:
124:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.