Java Doc for BSServiceDistributionGenerator.java in  » UML » MetaBoss » com » metaboss » sdlctools » services » codegeneration » 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 » UML » MetaBoss » com.metaboss.sdlctools.services.codegeneration 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


com.metaboss.sdlctools.services.codegeneration.BSServiceDistributionGenerator

All known Subclasses:   com.metaboss.sdlctools.services.codegeneration.servicedistributiongenerator.j2ee.jboss.BSServiceDistributionGeneratorForJ2eeJBoss,
BSServiceDistributionGenerator
public interface BSServiceDistributionGenerator (Code)
This interface offers operations dealing with code generation of the servicemodule distribution layer. It assumes that servicemodule layer interface has been generated elsewhere. The distribution layer consists of client and server code for all services and eventpublishers found in the servicemodule


Field Summary
final public static  StringCOMPONENT_URL
    


Method Summary
public  voidgenerateImplementationSourceCodeForServicemodule(String pGenerationDirectoryPath, String pServicemoduleRef)
    
public  voidgenerateImplementationSourceCodeForSystem(String pGenerationDirectoryPath, String pSystemRef)
    
public  StringgetEventPublishersClientImplementationPackageName(String pServicemoduleRef)
     Returns the name of the client implementation package for distribution of the event publishers (for use in jndi mapping) client is the package offered to others as implementation of the servicemodule interface.
public  StringgetEventPublishersImplementationPackageName(String pServicemoduleRef)
     Returns the name of the implementation package for distribution of the event publishers.
public  StringgetEventPublishersServerImplementationPackageName(String pServicemoduleRef)
     Returns the name of the server implementation package for distribution of the event publishers (for use in jndi mapping) server is the package from which connection to the servicemodule is made.
public  String[]getRequiredAdapters()
     array of names of adapters, which are required by this adapter,may be null or zero length array if this proxy generator is not relying on any adapter.
public  StringgetServicesClientImplementationPackageName(String pServicemoduleRef)
     Returns the name of the client implementation package for distribution of the services (for use in jndi mapping) client is the package offered to others as implementation of the servicemodule interface.
public  StringgetServicesImplementationPackageName(String pServicemoduleRef)
     Returns the name of the implementation package for distribution of the services.
public  StringgetServicesServerImplementationPackageName(String pServicemoduleRef)
     Returns the name of the server implementation package for distribution of the services (for use in jndi mapping) server is the package from which connection to the servicemodule is made.

Field Detail
COMPONENT_URL
final public static String COMPONENT_URL(Code)
Naming URL of the component





Method Detail
generateImplementationSourceCodeForServicemodule
public void generateImplementationSourceCodeForServicemodule(String pGenerationDirectoryPath, String pServicemoduleRef) throws BSException(Code)
Generates servicemodule distribution implementation sourcecode for the particular servicemodule within particular enterprise
Parameters:
  pGenerationDirectoryPath - directory to generate code to
Parameters:
  pServicemoduleRef - servicemodule to generate code for



generateImplementationSourceCodeForSystem
public void generateImplementationSourceCodeForSystem(String pGenerationDirectoryPath, String pSystemRef) throws BSException(Code)
Generates servicemodule distribution implementation sourcecode for the particular system within particular enterprise
Parameters:
  pGenerationDirectoryPath - directory to generate code to
Parameters:
  pSystemRef - system to generate code for



getEventPublishersClientImplementationPackageName
public String getEventPublishersClientImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the client implementation package for distribution of the event publishers (for use in jndi mapping) client is the package offered to others as implementation of the servicemodule interface. Can be the same as server package
Parameters:
  pServicemoduleRef - servicemodule to generate code for



getEventPublishersImplementationPackageName
public String getEventPublishersImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the implementation package for distribution of the event publishers. This package is the root package for the package hierarchy generated by distribution generator. This hierarchy includes separate event publishers client and event publishers server packages (must be separate for use in jndi mapping). It also may include other subpackages (really depends on generator syntax)
Parameters:
  pServicemoduleRef - servicemodule to return package name for



getEventPublishersServerImplementationPackageName
public String getEventPublishersServerImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the server implementation package for distribution of the event publishers (for use in jndi mapping) server is the package from which connection to the servicemodule is made. Can be the same as client package
Parameters:
  pServicemoduleRef - servicemodule to generate code for



getRequiredAdapters
public String[] getRequiredAdapters() throws BSException(Code)
array of names of adapters, which are required by this adapter,may be null or zero length array if this proxy generator is not relying on any adapter.



getServicesClientImplementationPackageName
public String getServicesClientImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the client implementation package for distribution of the services (for use in jndi mapping) client is the package offered to others as implementation of the servicemodule interface. Can be the same as server package
Parameters:
  pServicemoduleRef - servicemodule to generate code for



getServicesImplementationPackageName
public String getServicesImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the implementation package for distribution of the services. This package is the root package for the package hierarchy generated by distribution generator. This hierarchy includes separate services client and services server packages (must be separate for use in jndi mapping). It also may include other subpackages (really depends on generator syntax)
Parameters:
  pServicemoduleRef - servicemodule to return package name for



getServicesServerImplementationPackageName
public String getServicesServerImplementationPackageName(String pServicemoduleRef) throws BSException(Code)
Returns the name of the server implementation package for distribution of the services (for use in jndi mapping) server is the package from which connection to the servicemodule is made. Can be the same as client package
Parameters:
  pServicemoduleRef - servicemodule to generate code for



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