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


java.lang.Object
   com.sun.portal.providers.simplewebservice.WebServiceDescriptor

WebServiceDescriptor
public class WebServiceDescriptor (Code)
The WebServiceDescriptor encapsulates all the information required to invoke a method on a given web service.


Field Summary
final public static  StringDOCUMENT_SOAP_BINDING_STYLE
    
final public static  StringENC_ENCODED
    
final public static  StringENC_LITERAL
    
final public static  StringRPC_SOAP_BINDING_STYLE
    

Constructor Summary
public  WebServiceDescriptor(String wsdlURL, String serviceName, String portName, String methodName, String endPointURL, String inputNamespace, String outputNamespace, String inputEncodingStyle, String outputEncodingStyle, String inputEncodingStyleURI, String outputEncodingStyleURI, ParameterDescriptor[] input, ParameterDescriptor[] output, String soapBindingStyle, String soapBindingTransport, String soapAction, String documentation)
     Default constructor.

Method Summary
public  StringgetDocumentation()
     Get the documentation (if avilable) on the method to be invoked on the web service.
public  StringgetEndPointURL()
     Get the end point URL for the web service call.
public  StringgetInputEncodingStyle()
     Get the input encoding style (eg- "literal" or "encoded" to the web service call.
public  StringgetInputEncodingStyleURI()
     Get the input encoding style URI for the web service call.
public  StringgetInputNamespace()
     Get the input namespace for the web service.
public  ParameterDescriptor[]getInputParams()
     Get the input parameters required to invoke the method on the web service.
public  StringgetMethodName()
     Get the name of the method to invoke on the web service.
public  StringgetOutputEncodingStyle()
     Get the output encoding style (eg- "literal" or "encoded" to the web service call.
public  StringgetOutputEncodingStyleURI()
     Get the output encoding style URI for the web service call.
public  StringgetOutputNamespace()
     Get the output namespace for the web service.
public  ParameterDescriptor[]getOutputParams()
     Get the output param used when returning results from the method invocation on the web service.
public  StringgetPortName()
     Get the web service port name.
public  StringgetSOAPAction()
     Get the SOAP Action for the Binding operation.
public  StringgetSOAPBindingStyle()
     Get the SOAP Binding Style.
public  StringgetSOAPBindingTransport()
     Get the SOAP Binding Transport.
public  StringgetServiceName()
     Get the web service name.
public  StringgetWSDLURL()
     Get the WSDL URL for the web service.
public  booleanisOneWayOperation()
    
public  voidsetOneWayOperation(boolean oneway)
    
public  StringtoString()
     Get the string representation of this WebServiceDescriptor.

Field Detail
DOCUMENT_SOAP_BINDING_STYLE
final public static String DOCUMENT_SOAP_BINDING_STYLE(Code)



ENC_ENCODED
final public static String ENC_ENCODED(Code)



ENC_LITERAL
final public static String ENC_LITERAL(Code)



RPC_SOAP_BINDING_STYLE
final public static String RPC_SOAP_BINDING_STYLE(Code)




Constructor Detail
WebServiceDescriptor
public WebServiceDescriptor(String wsdlURL, String serviceName, String portName, String methodName, String endPointURL, String inputNamespace, String outputNamespace, String inputEncodingStyle, String outputEncodingStyle, String inputEncodingStyleURI, String outputEncodingStyleURI, ParameterDescriptor[] input, ParameterDescriptor[] output, String soapBindingStyle, String soapBindingTransport, String soapAction, String documentation)(Code)
Default constructor.
Parameters:
  wsdlURL - the WSDL URL for the web service.
Parameters:
  serviceName - the name of the web service to invoke.
Parameters:
  portName - the name of the port associated with the web service.
Parameters:
  methodName - the name of the method to invoke on the web service.
Parameters:
  endPointURL - the end point URL for the web service.
Parameters:
  inputNamespace - the input namespace for the web service.
Parameters:
  outputNamespace - the output namespace for the web service.
Parameters:
  inputEncodingStyle - the input encoding style (eg- "encoded" or "literal")for the web service.
Parameters:
  outputEncodingStyle - the output encoding style (eg- "encoded" or "literal")for the web service.
Parameters:
  inputEncodingStyleURI - the input encoding style URI for the web service.
Parameters:
  outputEncodingStyleURI - the output encoding style URI for the web service.
Parameters:
  input - the array of input ParameterDescriptors for the web service.
Parameters:
  output - the output ParameterDescriptor for the web service.
Parameters:
  soapBindingStyle - the SOAP Binding Style.
Parameters:
  soapBindingTransport - the SOAP Binding Transport.
Parameters:
  soapAction - the SOAP Action.
Parameters:
  documentation - documentation about the method to invoke on the web service.




Method Detail
getDocumentation
public String getDocumentation()(Code)
Get the documentation (if avilable) on the method to be invoked on the web service. documentation on the web service method beinginvoked.



getEndPointURL
public String getEndPointURL()(Code)
Get the end point URL for the web service call. the end point URL for the web service call.



getInputEncodingStyle
public String getInputEncodingStyle()(Code)
Get the input encoding style (eg- "literal" or "encoded" to the web service call. the input encoding sytle applicable to theweb service call.



getInputEncodingStyleURI
public String getInputEncodingStyleURI()(Code)
Get the input encoding style URI for the web service call. the input encoding sytle URI applicable to theweb service call.



getInputNamespace
public String getInputNamespace()(Code)
Get the input namespace for the web service. the input namespace for the web service.



getInputParams
public ParameterDescriptor[] getInputParams()(Code)
Get the input parameters required to invoke the method on the web service. an array of input parameters for theweb service method call.



getMethodName
public String getMethodName()(Code)
Get the name of the method to invoke on the web service. the method name for the web service.



getOutputEncodingStyle
public String getOutputEncodingStyle()(Code)
Get the output encoding style (eg- "literal" or "encoded" to the web service call. the output encoding sytle applicable to theweb service call.



getOutputEncodingStyleURI
public String getOutputEncodingStyleURI()(Code)
Get the output encoding style URI for the web service call. the output encoding sytle URI applicable to theweb service call.



getOutputNamespace
public String getOutputNamespace()(Code)
Get the output namespace for the web service. the output namespace for the web service.



getOutputParams
public ParameterDescriptor[] getOutputParams()(Code)
Get the output param used when returning results from the method invocation on the web service. the output parameter for the web service method call.



getPortName
public String getPortName()(Code)
Get the web service port name. the port name for the web service.



getSOAPAction
public String getSOAPAction()(Code)
Get the SOAP Action for the Binding operation. the SOAP Action.



getSOAPBindingStyle
public String getSOAPBindingStyle()(Code)
Get the SOAP Binding Style. the SOAP Binding Style.



getSOAPBindingTransport
public String getSOAPBindingTransport()(Code)
Get the SOAP Binding Transport. the SOAP Binding Transport.



getServiceName
public String getServiceName()(Code)
Get the web service name. the name for the web service.



getWSDLURL
public String getWSDLURL()(Code)
Get the WSDL URL for the web service. the WSDL URL for the web service.



isOneWayOperation
public boolean isOneWayOperation()(Code)



setOneWayOperation
public void setOneWayOperation(boolean oneway)(Code)



toString
public String toString()(Code)
Get the string representation of this WebServiceDescriptor. the string representation of this WebServiceDescriptor.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.