Source Code Cross Referenced for BOMetaBossDomainImpl.java in  » UML » MetaBoss » com » metaboss » sdlctools » domains » enterprisemodel » impl » 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.domains.enterprisemodel.impl 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
002:        // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
003:        // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
004:        // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
005:        // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
006:        // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
007:        // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
008:        // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
009:        // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
010:        // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
011:        // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
012:        // POSSIBILITY OF SUCH DAMAGE.
013:        //
014:        // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
015:        package com.metaboss.sdlctools.domains.enterprisemodel.impl;
016:
017:        import com.metaboss.enterprise.bo.BOException;
018:        import com.metaboss.sdlctools.domains.enterprisemodel.BOAssociationRole;
019:        import com.metaboss.sdlctools.domains.enterprisemodel.BODatatype;
020:        import com.metaboss.sdlctools.domains.enterprisemodel.BODatatypeList;
021:        import com.metaboss.sdlctools.domains.enterprisemodel.BODomain;
022:        import com.metaboss.sdlctools.domains.enterprisemodel.BOEnterpriseList;
023:        import com.metaboss.sdlctools.domains.enterprisemodel.BOEntity;
024:        import com.metaboss.sdlctools.domains.enterprisemodel.BOMessage;
025:        import com.metaboss.sdlctools.domains.enterprisemodel.BOMetaBossDomain;
026:        import com.metaboss.sdlctools.domains.enterprisemodel.BOOperation;
027:        import com.metaboss.sdlctools.domains.enterprisemodel.BOService;
028:        import com.metaboss.sdlctools.domains.enterprisemodel.BOServiceimplementation;
029:        import com.metaboss.sdlctools.domains.enterprisemodel.BOServicemodule;
030:        import com.metaboss.sdlctools.domains.enterprisemodel.BOStructure;
031:        import com.metaboss.sdlctools.domains.enterprisemodel.BOSystem;
032:        import com.metaboss.sdlctools.domains.enterprisemodel.BOTypetemplate;
033:        import com.metaboss.sdlctools.domains.enterprisemodel.BOTypetemplateList;
034:        import com.oldboss.framework.bo.impl.BOEntityDomainImpl;
035:
036:        public class BOMetaBossDomainImpl extends BOEntityDomainImpl implements 
037:                BOMetaBossDomain {
038:            private BOEnterpriseList mEnterpriseList = null;
039:
040:            /* Private constructor restricts instance creation from outside */
041:            BOMetaBossDomainImpl() throws BOException {
042:            }
043:
044:            /* Retrieves requested typetemplate object */
045:            public BOTypetemplate getTypetemplate(String pTypetemplateRef)
046:                    throws BOException {
047:                return BOTypetemplateImpl.createInstanceForExisting(this ,
048:                        pTypetemplateRef);
049:            }
050:
051:            /* Retrieves requested datatype object */
052:            public BODatatype getDatatype(String pDatatypeRef)
053:                    throws BOException {
054:                return BODatatypeImpl.createInstanceForExisting(this ,
055:                        pDatatypeRef);
056:            }
057:
058:            /* Retrieves requested entity object */
059:            public BOEntity getEntity(String pEntityRef) throws BOException {
060:                return BOEntityImpl.createInstanceForExisting(this , pEntityRef);
061:            }
062:
063:            /* Retrieves requested structure object */
064:            public BOStructure getStructure(String pStructureRef)
065:                    throws BOException {
066:                return BOStructureImpl.createInstanceForExisting(this ,
067:                        pStructureRef);
068:            }
069:
070:            /* Retrieves requested operation object */
071:            public BOOperation getOperation(String pOperationRef)
072:                    throws BOException {
073:                return BOOperationImpl.createInstanceForExisting(this ,
074:                        pOperationRef);
075:            }
076:
077:            /* Retrieves requested message object */
078:            public BOMessage getMessage(String pMessageRef) throws BOException {
079:                return BOMessageImpl.createInstanceForExisting(this ,
080:                        pMessageRef);
081:            }
082:
083:            /* Retrieves requested system object */
084:            public BOSystem getSystem(String pSystemRef) throws BOException {
085:                return BOSystemImpl.createInstanceForExisting(this , pSystemRef);
086:            }
087:
088:            /* Retrieves requested servicemodule object. */
089:            public BOServicemodule getServicemodule(String pServicemoduleRef)
090:                    throws BOException {
091:                return BOServicemoduleImpl.createInstanceForExisting(this ,
092:                        pServicemoduleRef);
093:            }
094:
095:            /* Retrieves requested service object. */
096:            public BOService getService(String pServiceRef) throws BOException {
097:                return BOServiceImpl.createInstanceForExisting(this ,
098:                        pServiceRef);
099:            }
100:
101:            /* Retrieves requested service implementation object. */
102:            public BOServiceimplementation getServiceimplementation(
103:                    String pServiceimplementationRef) throws BOException {
104:                return null; //return BOServiceimplementationImpl.createInstanceForExisting(this, pServiceimplementationRef);
105:            }
106:
107:            /* Retrieves requested domain object */
108:            public BODomain getDomain(String pDomainRef) throws BOException {
109:                return BODomainImpl.createInstanceForExisting(this , pDomainRef);
110:            }
111:
112:            /* Retrieves requested association role object. */
113:            public BOAssociationRole getAssociationRole(
114:                    String pAssociationRoleRef) throws BOException {
115:                return BOAssociationRoleImpl.createInstanceForExisting(this ,
116:                        pAssociationRoleRef);
117:            }
118:
119:            /* Retrieves all defined enterprises */
120:            public BOEnterpriseList getEnterprises() throws BOException {
121:                if (mEnterpriseList == null) {
122:                    mEnterpriseList = BOEnterpriseListImpl
123:                            .createInstanceForExisting(this );
124:                }
125:                return mEnterpriseList;
126:            }
127:
128:            /* Retrieves all public type templates */
129:            public BOTypetemplateList getPublicTypetemplates()
130:                    throws BOException {
131:                return BOTypetemplateListImpl.createInstanceForExisting(this );
132:            }
133:
134:            /* Retrieves all public datatypes */
135:            public BODatatypeList getPublicDatatypes() throws BOException {
136:                return BODatatypeListImpl.createInstanceForExisting(this);
137:            }
138:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.