Java Doc for ICustComponent.java in  » ESB » cbesb-1.2 » com » bostechcorp » cbesb » common » util » custcomponent » 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 » cbesb 1.2 » com.bostechcorp.cbesb.common.util.custcomponent 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.bostechcorp.cbesb.common.util.custcomponent.ICustComponent

All known Subclasses:   com.bostechcorp.cbesb.common.util.custcomponent.BaseCustComponent,
ICustComponent
public interface ICustComponent (Code)
The interface class that the Custom Component must implment to be used in Flow Editor. If useDefaultDeploy is true: Users can implement SetComponentURI to supply component URI. if useDefaultWSDLGenerator=false, Users can implement SetComponentProperies to selectively decide which properties go to the WSDL config tag. And also implement genDeploymentArtificats to generate the additional optional config files. If useDefaultDeploy is false: Users can implement getServiceName to set ServiceName for specified role. And also implement getEndpointName to set endpoint name for specified role. Users can implement genDeploymentArtificats to generate the deployment artifacts required for the custom component
author:
   elu

Inner Class :public enum Role
Inner Class :public enum DefaultMEP



Method Summary
public  voidgenDeploymentArtifacts(IServiceUnitContext context)
     if useDefaultDeploy=true and useDefaultWSDLGenerator=false, Users can implement genDeploymentArtificats to generate the additional optional config files.
public  StringgetBigIconResourceLocation()
    
public  StringgetComponentName()
    
public  StringgetComponentURI()
     When useDefaultDeploy() return true, users can implement this method to supply component URI. revision required on the utility of this method.
public  DefaultMEPgetDefaultMep(Role role)
    
public  StringgetDescription()
    
public  StringgetEndpointName(Role role, IServiceUnitContext context)
    
public  StringgetName()
    
public  IPropertygetPropertyByName(String propertyName, Role role)
    
public  RolegetRole()
    
public  StringgetServiceName(Role role, IServiceUnitContext context)
    
public  StringgetSmallIconResourceLocation()
     This one is used in the Custom Component wizard to display a list of custom component.
public  booleangetUseCCSL()
    
public  StringgetVendor()
    
public  StringgetVersion()
    
public  IWizardPage[]getWizardPages(Role role)
    
public  booleanisConsumerScheduleable()
    
public  voidsetComponentProperties(Properties properties)
     When seDefaultDeploy() return true and useDefaultWSDLGenerator() return false, users can implement this component to selectively decide which properties go to the WSDL config tag.
public  booleanuseDefaultDeployment()
     It returns true for ChainBuilder ESB style custom component.
public  booleanuseDefaultWSDLGenerator()
     If return true, the generated WSDL files will be followed ChainBuilder ESB deployment descriptor design pattern.



Method Detail
genDeploymentArtifacts
public void genDeploymentArtifacts(IServiceUnitContext context)(Code)
if useDefaultDeploy=true and useDefaultWSDLGenerator=false, Users can implement genDeploymentArtificats to generate the additional optional config files. If useDefaultDeploy is false: Users can implement genDeploymentArtificats to generate the deployment artifacts required for the custom component



getBigIconResourceLocation
public String getBigIconResourceLocation()(Code)
This one is used in the canvas when a custom component is dragged the resource location of the big icon for custom component



getComponentName
public String getComponentName()(Code)
such as "ChainBuilderESB-BC-Email"



getComponentURI
public String getComponentURI()(Code)
When useDefaultDeploy() return true, users can implement this method to supply component URI. revision required on the utility of this method. the namespace cretaion is: vendorNameSpace+"/wsdl/"+componentType+"/"version default vendorNamespace="http://cbesb.bostechcorp.com"
Parameters:
  uri - - the component URI, e.g, "http://cbesb.bostechcorp.com/wsdl/email/1.0"



getDefaultMep
public DefaultMEP getDefaultMep(Role role)(Code)

Parameters:
  role - the DefaultMEP for the role



getDescription
public String getDescription()(Code)
the description of the custom component



getEndpointName
public String getEndpointName(Role role, IServiceUnitContext context)(Code)
This API is used when useDefaultDeployment() return false
Parameters:
  role - the EndpointName for specified role



getName
public String getName()(Code)
the name the custom component



getPropertyByName
public IProperty getPropertyByName(String propertyName, Role role)(Code)
get a property def by property' name and role
Parameters:
  propertyName -
Parameters:
  role -



getRole
public Role getRole()(Code)
the role of custom component



getServiceName
public String getServiceName(Role role, IServiceUnitContext context)(Code)
This API is used when useDefaultDeployment() return false
Parameters:
  role - the ServiceName for specified role



getSmallIconResourceLocation
public String getSmallIconResourceLocation()(Code)
This one is used in the Custom Component wizard to display a list of custom component. the resource location of the small icon for custom component.



getUseCCSL
public boolean getUseCCSL()(Code)
whether the Use CCSL is supported



getVendor
public String getVendor()(Code)
the vendor who produces this custom component



getVersion
public String getVersion()(Code)
the version of the custom component



getWizardPages
public IWizardPage[] getWizardPages(Role role)(Code)
the all IWizardPage objects for specified role



isConsumerScheduleable
public boolean isConsumerScheduleable()(Code)
if the consumer should support schedule function



setComponentProperties
public void setComponentProperties(Properties properties)(Code)
When seDefaultDeploy() return true and useDefaultWSDLGenerator() return false, users can implement this component to selectively decide which properties go to the WSDL config tag.
Parameters:
  properties - - a Properties object to be serialized into the WSDL config tag.



useDefaultDeployment
public boolean useDefaultDeployment()(Code)
It returns true for ChainBuilder ESB style custom component. whether the default deployment descriptor is used



useDefaultWSDLGenerator
public boolean useDefaultWSDLGenerator()(Code)
If return true, the generated WSDL files will be followed ChainBuilder ESB deployment descriptor design pattern. whether to use the default WSDL generator in ChainBuilder ESB



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