Source Code Cross Referenced for DefinitionDescriptor.java in  » Portal » Open-Portal » com » sun » portal » providers » simplewebservice » wsdl » 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 » Portal » Open Portal » com.sun.portal.providers.simplewebservice.wsdl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * $Id: DefinitionDescriptor.java,v 1.5 2003/06/03 10:49:22 sy131129 Exp $
003:         * Copyright 2002-2003 Sun Microsystems, Inc. All
004:         * rights reserved. Use of this product is subject
005:         * to license terms. Federal Acquisitions:
006:         * Commercial Software -- Government Users
007:         * Subject to Standard License Terms and
008:         * Conditions.
009:         *
010:         * Sun, Sun Microsystems, the Sun logo, and Sun ONE
011:         * are trademarks or registered trademarks of Sun Microsystems,
012:         * Inc. in the United States and other countries.
013:         */package com.sun.portal.providers.simplewebservice.wsdl;
014:
015:        import java.util.List;
016:        import java.util.Map;
017:
018:        /**
019:         * The DefinitonDescriptor represents a WSDL definition.
020:         *
021:         */
022:        public interface DefinitionDescriptor {
023:
024:            /**
025:             * Get the name of this definition.
026:             *
027:             * @return the definition name
028:             */
029:            public String getName();
030:
031:            /**
032:             * Get the target namespace in which the WSDL elements
033:             * are defined.
034:             *
035:             * @return the target namespace.
036:             */
037:            public String getTargetNamespace();
038:
039:            /**
040:             * Get the namespace URI associated with this prefix. Or null if
041:             * there is no namespace URI associated with this prefix. 
042:             *
043:             * @param prefix the prefix for which to fetch the namespace URI for.
044:             *
045:             * @return the target namespace.
046:             */
047:            public String getNamespace(String prefix);
048:
049:            /**
050:             * Get a prefix associated with this namespace URI. Or null if
051:             * there are no prefixes associated with this namespace URI. 
052:             *
053:             * @param namespaceURI the namespace URI for which to fetch the prefix for.
054:             *
055:             * @return the target prefix.
056:             */
057:            public String getPrefix(String namespaceURI);
058:
059:            /**
060:             * Get all namespace associations in this definition. The keys are
061:             * the prefixes, and the namespace URIs are the values. 
062:             *
063:             * @return all the Namespaces
064:             */
065:            public Map getNamespaces();
066:
067:            /**
068:             * Get the specified TypeDescriptor. 
069:             *
070:             * @param name the name of the desired TypeDescriptor.
071:             *
072:             * @return the corresponding TypeDescriptor, or null if there wasn't
073:             *         any matching TypeDescriptor.
074:             */
075:            public TypeDescriptor getTypeDescriptor(String name);
076:
077:            /**
078:             * Get all the TypeDescriptors defined here.
079:             *
080:             * @return all the TypeDescriptors.
081:             */
082:            public Map getTypeDescriptors();
083:
084:            /**
085:             * Get the specified MessageDescriptor. 
086:             *
087:             * @param name the name of the desired MessageDescriptor.
088:             *
089:             * @return the corresponding MessageDescriptor, or null if there wasn't
090:             *         any matching MessageDescriptor.
091:             */
092:            public MessageDescriptor getMessageDescriptor(String name);
093:
094:            /**
095:             * Get all the MessageDescriptors defined here.
096:             *
097:             * @return all the MessageDescriptors.
098:             */
099:            public Map getMessageDescriptors();
100:
101:            /**
102:             * Get the specified PortTypeDescriptor.
103:             *
104:             * @param name the name of the desired PortTypeDescriptor.
105:             * 
106:             * @return the corresponding PortTypeDescriptor, or null if there wasn't
107:             *          any matching PortTypeDescriptor
108:             */
109:            public PortTypeDescriptor getPortTypeDescriptor(String name);
110:
111:            /**
112:             * Get all the PortTypeDescriptors defined here.
113:             *
114:             * @return all the PortTypeDescriptors.   
115:             */
116:            public Map getPortTypeDescriptors();
117:
118:            /**
119:             * Get the specified BindingDescriptor.
120:             *
121:             * @param name the name of the desired BindingDescriptor.
122:             * 
123:             * @return the corresponding BindingDescriptor, or null if there wasn't
124:             *         any matching BindingDescriptor.
125:             */
126:            public BindingDescriptor getBindingDescriptor(String name);
127:
128:            /**
129:             * Get all the BindingDescriptor defined here.
130:             *
131:             * @return all the BindingDesciptors.
132:             */
133:            public Map getBindingDescriptors();
134:
135:            /**
136:             * Get the specified ServiceDescriptor. 
137:             *
138:             * @param name the name of the desired ServiceDescriptor.
139:             *
140:             * @return the corresponding ServiceDescriptor, or null if there wasn't
141:             *         any matching ServiceDescriptor.
142:             */
143:            public ServiceDescriptor getServiceDescriptor(String name);
144:
145:            /**
146:             * Get all the ServiceDescriptor defined here.
147:             *
148:             * @return all the ServiceDescriptors.   
149:             */
150:            public Map getServiceDescriptors();
151:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.