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


org.mule.api.registry.Registry

All known Subclasses:   org.mule.registry.AbstractRegistry,
Registry
public interface Registry extends Initialisable,Disposable(Code)


Field Summary
final public static  intDEFAULT_SCOPE
    
final public static  intSCOPE_IMMEDIATE
    
final public static  intSCOPE_LOCAL
    
final public static  intSCOPE_REMOTE
    


Method Summary
 CollectiongetAgents()
    
 CollectiongetConnectors()
    
 intgetDefaultScope()
    
 CollectiongetEndpoints()
    
 CollectiongetModels()
    
 RegistrygetParent()
    
 StringgetRegistryId()
    
 CollectiongetTransformers()
    
 booleanisDisposed()
    
 booleanisDisposing()
    
 booleanisInitialised()
    
 booleanisInitialising()
    
 booleanisReadOnly()
    
 booleanisRemote()
    
 AgentlookupAgent(String agentName)
    
 ConnectorlookupConnector(String name)
    
 EndpointBuilderlookupEndpointBuilder(String name)
     Looks-up endpoint builders which can be used to repeatably create endpoints with the same configuration.
 EndpointFactorylookupEndpointFactory()
    
 ModellookupModel(String name)
    
 ObjectlookupObject(String key)
     Look up a single object by name.
 ObjectlookupObject(String key, int scope)
     Look up a single object by name.
 ObjectlookupObject(Class type)
     Look up a single object by type.
 ObjectlookupObject(Class type, int scope)
     Look up a single object by type.
 CollectionlookupObjects(Class type)
     Look up all objects of a given type.
 CollectionlookupObjects(Class type, int scope)
     Look up all objects of a given type.
 ServicelookupService(String component)
    
 ServiceDescriptorlookupServiceDescriptor(String type, String name, Properties overrides)
    
 CollectionlookupServices(String model)
    
 CollectionlookupServices()
    
 ModellookupSystemModel()
    
 TransformerlookupTransformer(String name)
    
 TransformerlookupTransformer(Class input, Class output)
     Will find a transformer that is the closest match to the desired input and output.
 ListlookupTransformers(Class input, Class output)
     This method will return a list of org.mule.api.transformer.Transformer objects that accept the given input and return the given output type of object
Parameters:
  input - The desiered input type for the transformer
Parameters:
  output - the desired output type for the transformer a list of matching transformers.
 voidregisterAgent(Agent agent)
    
 voidregisterConnector(Connector connector)
    
 voidregisterEndpoint(ImmutableEndpoint endpoint)
    
public  voidregisterEndpointBuilder(String name, EndpointBuilder builder)
    
 voidregisterModel(Model model)
    
 voidregisterObject(String key, Object value)
    
 voidregisterObject(String key, Object value, Object metadata)
    
 voidregisterObjects(Map objects)
    
 voidregisterService(Service service)
    
 voidregisterTransformer(Transformer transformer)
    
 voidsetDefaultScope(int scope)
    
 voidsetParent(Registry registry)
    
 voidunregisterAgent(String agentName)
    
 voidunregisterConnector(String connectorName)
    
 voidunregisterEndpoint(String endpointName)
    
 voidunregisterModel(String modelName)
    
 voidunregisterObject(String key)
    
 voidunregisterService(String serviceName)
    
 voidunregisterTransformer(String transformerName)
    

Field Detail
DEFAULT_SCOPE
final public static int DEFAULT_SCOPE(Code)



SCOPE_IMMEDIATE
final public static int SCOPE_IMMEDIATE(Code)



SCOPE_LOCAL
final public static int SCOPE_LOCAL(Code)



SCOPE_REMOTE
final public static int SCOPE_REMOTE(Code)





Method Detail
getAgents
Collection getAgents()(Code)



getConnectors
Collection getConnectors()(Code)



getDefaultScope
int getDefaultScope()(Code)



getEndpoints
Collection getEndpoints()(Code)



getModels
Collection getModels()(Code)



getParent
Registry getParent()(Code)



getRegistryId
String getRegistryId()(Code)



getTransformers
Collection getTransformers()(Code)



isDisposed
boolean isDisposed()(Code)



isDisposing
boolean isDisposing()(Code)



isInitialised
boolean isInitialised()(Code)



isInitialising
boolean isInitialising()(Code)



isReadOnly
boolean isReadOnly()(Code)



isRemote
boolean isRemote()(Code)



lookupAgent
Agent lookupAgent(String agentName)(Code)



lookupConnector
Connector lookupConnector(String name)(Code)



lookupEndpointBuilder
EndpointBuilder lookupEndpointBuilder(String name)(Code)
Looks-up endpoint builders which can be used to repeatably create endpoints with the same configuration. These endpoint builder are either global endpoints or they are builders used to create named endpoints configured on routers and exception strategies.



lookupEndpointFactory
EndpointFactory lookupEndpointFactory()(Code)



lookupModel
Model lookupModel(String name)(Code)



lookupObject
Object lookupObject(String key)(Code)
Look up a single object by name.



lookupObject
Object lookupObject(String key, int scope)(Code)
Look up a single object by name.



lookupObject
Object lookupObject(Class type) throws RegistrationException(Code)
Look up a single object by type.



lookupObject
Object lookupObject(Class type, int scope) throws RegistrationException(Code)
Look up a single object by type.



lookupObjects
Collection lookupObjects(Class type)(Code)
Look up all objects of a given type.



lookupObjects
Collection lookupObjects(Class type, int scope)(Code)
Look up all objects of a given type.



lookupService
Service lookupService(String component)(Code)



lookupServiceDescriptor
ServiceDescriptor lookupServiceDescriptor(String type, String name, Properties overrides) throws ServiceException(Code)



lookupServices
Collection lookupServices(String model)(Code)



lookupServices
Collection lookupServices()(Code)



lookupSystemModel
Model lookupSystemModel()(Code)



lookupTransformer
Transformer lookupTransformer(String name)(Code)



lookupTransformer
Transformer lookupTransformer(Class input, Class output) throws TransformerException(Code)
Will find a transformer that is the closest match to the desired input and output.
Parameters:
  input - The desiered input type for the transformer
Parameters:
  output - the desired output type for the transformer A transformer that exactly matches or the will accept the input and output parameters
throws:
  TransformerException - will be thrown if there is more than one match



lookupTransformers
List lookupTransformers(Class input, Class output)(Code)
This method will return a list of org.mule.api.transformer.Transformer objects that accept the given input and return the given output type of object
Parameters:
  input - The desiered input type for the transformer
Parameters:
  output - the desired output type for the transformer a list of matching transformers. If there were no matchers an empty list is returned.



registerAgent
void registerAgent(Agent agent) throws MuleException(Code)



registerConnector
void registerConnector(Connector connector) throws MuleException(Code)



registerEndpoint
void registerEndpoint(ImmutableEndpoint endpoint) throws MuleException(Code)



registerEndpointBuilder
public void registerEndpointBuilder(String name, EndpointBuilder builder) throws MuleException(Code)



registerModel
void registerModel(Model model) throws MuleException(Code)



registerObject
void registerObject(String key, Object value) throws RegistrationException(Code)



registerObject
void registerObject(String key, Object value, Object metadata) throws RegistrationException(Code)



registerObjects
void registerObjects(Map objects) throws RegistrationException(Code)



registerService
void registerService(Service service) throws MuleException(Code)



registerTransformer
void registerTransformer(Transformer transformer) throws MuleException(Code)



setDefaultScope
void setDefaultScope(int scope)(Code)



setParent
void setParent(Registry registry)(Code)



unregisterAgent
void unregisterAgent(String agentName) throws MuleException(Code)



unregisterConnector
void unregisterConnector(String connectorName) throws MuleException(Code)



unregisterEndpoint
void unregisterEndpoint(String endpointName) throws MuleException(Code)



unregisterModel
void unregisterModel(String modelName) throws MuleException(Code)



unregisterObject
void unregisterObject(String key) throws MuleException(Code)



unregisterService
void unregisterService(String serviceName) throws MuleException(Code)



unregisterTransformer
void unregisterTransformer(String transformerName) throws MuleException(Code)



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