Java Doc for ImmutableEndpoint.java in  » ESB » mule » org » mule » api » endpoint » 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 » ESB » mule » org.mule.api.endpoint 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.mule.api.endpoint.ImmutableEndpoint

All known Subclasses:   org.mule.endpoint.AbstractEndpoint,
ImmutableEndpoint
public interface ImmutableEndpoint extends Serializable(Code)
ImmutableEndpoint describes a Message endpoint where data is sent or received. An Enpoint is an Resource address (EndpointUri), with associated transformation, transaction and filtering rules.


Field Summary
final public static  StringINITIAL_STATE_STARTED
    
final public static  StringINITIAL_STATE_STOPPED
    


Method Summary
 ConnectionStrategygetConnectionStrategy()
    
 ConnectorgetConnector()
     The endpoint that will be used to send the message on.
 StringgetEncoding()
    
 EndpointURIgetEndpointURI()
     This specifess the communication endpointUri.
 FiltergetFilter()
     The filter to apply to incoming messages.
 StringgetInitialState()
     Sets the state the endpoint will be loaded in.
 MuleContextgetMuleContext()
    
 StringgetName()
    
 MapgetProperties()
    
 ObjectgetProperty(Object key)
    
 StringgetProtocol()
     The transport protocol name that the message endpoint communicates over.
 intgetRemoteSyncTimeout()
    
 ListgetResponseTransformers()
     The transformers used when a response is returned from invoking this endpoint.
 EndpointSecurityFiltergetSecurityFilter()
     Returns an EndpointSecurityFilter for this endpoint.
 TransactionConfiggetTransactionConfig()
    
 ListgetTransformers()
     Transformers are responsible for transforming data when it is received or sent by the UMO (depending on whether this endpoint is a receiver or not).
 booleanisDeleteUnacceptedMessages()
    
 booleanisReadOnly()
     true if this endpoint is read-only and none of it's properties canchange.
 booleanisRemoteSync()
     For certain providers that support the notion of a backchannel such as sockets (outputStream) or Jms (ReplyTo) Mule can automatically wait for a response from a backchannel when dispatching over these protocols.
 booleanisSynchronous()
     Determines if requests originating from this endpoint should be synchronous i.e.

Field Detail
INITIAL_STATE_STARTED
final public static String INITIAL_STATE_STARTED(Code)



INITIAL_STATE_STOPPED
final public static String INITIAL_STATE_STOPPED(Code)





Method Detail
getConnectionStrategy
ConnectionStrategy getConnectionStrategy()(Code)
Returns the connection strategy this endpoint should use when connecting to the underlying resource the connection strategy this endpoint should use when connecting to the underlying resource



getConnector
Connector getConnector()(Code)
The endpoint that will be used to send the message on. It is important that the endpointUri and the connection correlate i.e. if your endpointUri is a jms queue your connection must be a JMS endpoint. the endpoint associated with the endpoint



getEncoding
String getEncoding()(Code)
Decides the encoding to be used for events received by this endpoint the encoding set on the endpoint or null if no codin has beenspecified



getEndpointURI
EndpointURI getEndpointURI()(Code)
This specifess the communication endpointUri. This will have a different format depending on the transport protocol being used i.e.
  • smtp -> admin@mycompany.com
  • jms -> shipping.orders.topic
  • sms -> +447910010010

if an endpointUri is not specifed it will be assumed that it will be determined at run-time by the calling application. The endpointUri can be aliteral endpointUri such as an email address or it can be a logical name for an endpointUri as long as it is declared in a message-endpointUri block. When the message-provider is created the endpointUri is first lookup in the endpointUri registry and if nothing is returned the endpointUri value itself is used. the endpointUri on which the endpoint sends or receives data




getFilter
Filter getFilter()(Code)
The filter to apply to incoming messages. Only applies when the endpoint endpointUri is a receiver the Filter to use or null if one is not set



getInitialState
String getInitialState()(Code)
Sets the state the endpoint will be loaded in. The States are 'stopped' and 'started' (default) the endpoint starting state



getMuleContext
MuleContext getMuleContext()(Code)



getName
String getName()(Code)
The name is the identifier for the endpoint the endpoint name



getProperties
Map getProperties()(Code)
Returns any properties set on this endpoint a map of properties for this endpoint



getProperty
Object getProperty(Object key)(Code)
Retrieves a property set on the endpoint
Parameters:
  key - the name of the property the property value or null if it does not exist



getProtocol
String getProtocol()(Code)
The transport protocol name that the message endpoint communicates over. i.e. jms, sms, smtp etc. The protocol must match that of the associated endpoint the protocol name



getRemoteSyncTimeout
int getRemoteSyncTimeout()(Code)
The timeout value for remoteSync invocations the timeout in milliseconds



getResponseTransformers
List getResponseTransformers()(Code)
The transformers used when a response is returned from invoking this endpoint. If an endpoint has no response transformers an empty list is returned. the transformer to use when receiving the response data



getSecurityFilter
EndpointSecurityFilter getSecurityFilter()(Code)
Returns an EndpointSecurityFilter for this endpoint. If one is not set, there will be no authentication on events sent via this endpoint EndpointSecurityFilter responsible for authenticating message flowvia this endpoint.
See Also:   EndpointSecurityFilter



getTransactionConfig
TransactionConfig getTransactionConfig()(Code)
Returns the transaction configuration for this endpoint the transaction configuration for this endpoint or null if theendpoint is not transactional



getTransformers
List getTransformers()(Code)
Transformers are responsible for transforming data when it is received or sent by the UMO (depending on whether this endpoint is a receiver or not). A tranformation for an inbound event can be forced by the user by calling the inbound event.getTransformedMessage(). A tranformation for an outbound event is called or when the UMO dispatchEvent() or sendEvent() methods are called. If an endpoint has no transformers an empty list is returned. the transformers to use when receiving or sending data



isDeleteUnacceptedMessages
boolean isDeleteUnacceptedMessages()(Code)
If a filter is configured on this endpoint, this property will determine if message that are not excepted by the filter are deleted true if message should be deleted, false otherwise



isReadOnly
boolean isReadOnly()(Code)
true if this endpoint is read-only and none of it's properties canchange. Global endpoints should be read-only so that unexpectedbehaviour is avoided.



isRemoteSync
boolean isRemoteSync()(Code)
For certain providers that support the notion of a backchannel such as sockets (outputStream) or Jms (ReplyTo) Mule can automatically wait for a response from a backchannel when dispatching over these protocols. This is different for synchronous as synchronous behavior only applies to in



isSynchronous
boolean isSynchronous()(Code)
Determines if requests originating from this endpoint should be synchronous i.e. execute in a single thread and possibly return an result. This property is only used when the endpoint is of type 'receiver' whether requests on this endpoint should execute in a single thread.This property is only used when the endpoint is of type 'receiver'



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