Java Doc for WSIFPort.java in  » Web-Services » wsif » org » apache » wsif » 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 » Web Services » wsif » org.apache.wsif 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.wsif.WSIFPort

All known Subclasses:   org.apache.wsif.base.WSIFDefaultPort,
WSIFPort
public interface WSIFPort extends Serializable(Code)
A WSIFPort represents the handle by which the operations from the of the of this WSIFPort can be executed. This is an interface which must implemented by specific implementations for the ports. That is, the actual logic is dependent on the binding associated with this port. An interface is used to enable dynamic implementation generation using JDK1.3 dynamic proxy stuff.
author:
   Paul Fremantle
author:
   Alekander Slominski
author:
   Matthew J. Duftler
author:
   Sanjiva Weerawarana
author:
   Nirmal Mukhi




Method Summary
public  voidclose()
     Close this port; indicates that the user is done using it.
public  WSIFOperationcreateOperation(String operationName)
     Create a new WSIFOperation.
public  WSIFOperationcreateOperation(String operationName, String inputName, String outputName)
     Create a new WSIFOperation.
public  WSIFMessagegetContext()
     Gets the context information for this WSIFPort.
public  voidsetContext(WSIFMessage context)
     Sets the context information for this WSIFPort.
public  booleansupportsAsync()
     Tests if this port supports asynchronous calls to operations.
public  booleansupportsSync()
     Tests if this port supports synchronous calls to operations.



Method Detail
close
public void close() throws WSIFException(Code)
Close this port; indicates that the user is done using it. This is only essential for WSIFPorts that are being used in a stateful or resource-shared manner. Responsible stubs will call this if feasible at the right time.
exception:
  WSIFException - if something goes wrong



createOperation
public WSIFOperation createOperation(String operationName) throws WSIFException(Code)
Create a new WSIFOperation. There must be exactly one operation in this port's portType with this name. For overloaded operations see WSIFPort.createOperation(String,String,String) .
Parameters:
  operationName - the name of an operation in this port's portType the new WSIFOperation
exception:
  WSIFException - if something goes wrong



createOperation
public WSIFOperation createOperation(String operationName, String inputName, String outputName) throws WSIFException(Code)
Create a new WSIFOperation. There must be an operation in this port's portType with this operation name, input message name and output message name. The input message name distinguishes overloaded operations.
Parameters:
  operationName - the name of an operation in this port's portType
Parameters:
  inputName - the input message name
Parameters:
  outputName - the output message name the new WSIFOperation
exception:
  WSIFException - if something goes wrong



getContext
public WSIFMessage getContext() throws WSIFException(Code)
Gets the context information for this WSIFPort. context



setContext
public void setContext(WSIFMessage context)(Code)
Sets the context information for this WSIFPort.
Parameters:
  WSIFMessage - the new context information



supportsAsync
public boolean supportsAsync()(Code)
Tests if this port supports asynchronous calls to operations. true this port support asynchronous calls
false this port does not support asynchronous calls



supportsSync
public boolean supportsSync()(Code)
Tests if this port supports synchronous calls to operations. true this port support synchronous calls
false this port does not support synchronous calls



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