Source Code Cross Referenced for EndpointInfo.java in  » ESB » open-esb » com » sun » jbi » ui » runtime » verifier » 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 » open esb » com.sun.jbi.ui.runtime.verifier 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * BEGIN_HEADER - DO NOT EDIT
003:         *
004:         * The contents of this file are subject to the terms
005:         * of the Common Development and Distribution License
006:         * (the "License").  You may not use this file except
007:         * in compliance with the License.
008:         *
009:         * You can obtain a copy of the license at
010:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
011:         * See the License for the specific language governing
012:         * permissions and limitations under the License.
013:         *
014:         * When distributing Covered Code, include this CDDL
015:         * HEADER in each file and include the License file at
016:         * https://open-esb.dev.java.net/public/CDDLv1.0.html.
017:         * If applicable add the following below this CDDL HEADER,
018:         * with the fields enclosed by brackets "[]" replaced with
019:         * your own identifying information: Portions Copyright
020:         * [year] [name of copyright owner]
021:         */
022:
023:        /*
024:         * @(#)EndpointInfo.java
025:         * Copyright 2004-2007 Sun Microsystems, Inc. All Rights Reserved.
026:         *
027:         * END_HEADER - DO NOT EDIT
028:         */
029:        package com.sun.jbi.ui.runtime.verifier;
030:
031:        import java.util.List;
032:
033:        /**
034:         * This class is used as a model for information about an Endpoint
035:         */
036:        public class EndpointInfo {
037:
038:            /**
039:             * endpoint name
040:             */
041:            private String mName;
042:
043:            /**
044:             * corresponding component 
045:             */
046:            private String mComponentName;
047:
048:            /**
049:             * corresponding SU name
050:             */
051:            private String mServiceUnitName;
052:
053:            /**
054:             * list of application variables
055:             */
056:            private List mAppVarList;
057:
058:            /**
059:             * list of application configurations
060:             */
061:            private List mAppConfigList;
062:
063:            /**
064:             * Constructor
065:             */
066:            public EndpointInfo() {
067:
068:            }
069:
070:            /**
071:             * Constructor
072:             */
073:            public EndpointInfo(String endpointName, String componentName,
074:                    String serviceUnitName, List appVarList, List appConfigList) {
075:                this .mName = endpointName;
076:                this .mComponentName = componentName;
077:                this .mServiceUnitName = serviceUnitName;
078:                this .mAppVarList = appVarList;
079:                this .mAppConfigList = appConfigList;
080:            }
081:
082:            /**
083:             * getter for endpointName
084:             * @returns String the endpointName
085:             */
086:            public String getEndpointName() {
087:                return mName;
088:            }
089:
090:            /**
091:             * getter for componentName
092:             * @returns String the componentName
093:             */
094:            public String getComponentName() {
095:                return mComponentName;
096:            }
097:
098:            /**
099:             * getter for serviceunitname
100:             * @returns String the serviceunitname
101:             */
102:            public String getServiceUnitName() {
103:                return mServiceUnitName;
104:            }
105:
106:            /**
107:             * getter for list of application variables used
108:             * @returns List list of application variables 
109:             * used by this endpoint
110:             */
111:            public List getApplicationVariables() {
112:                return mAppVarList;
113:            }
114:
115:            /**
116:             * getter for list of application configurations used
117:             * @returns List list of application configurations associated 
118:             * with this endpoint
119:             */
120:            public List getApplicationConfigurations() {
121:                return mAppConfigList;
122:            }
123:
124:            /**
125:             * setter  for endpointName
126:             * @param name the endpointName
127:             */
128:            public void setEndpointName(String name) {
129:                mName = name;
130:            }
131:
132:            /**
133:             * setter for componentName
134:             * @param componentName the componentName
135:             */
136:            public void setComponentName(String componentName) {
137:                mComponentName = componentName;
138:            }
139:
140:            /**
141:             * setter for serviceunitname
142:             * @param serviceunitName the serviceunitname
143:             */
144:            public void setServiceUnitName(String serviceunitName) {
145:                mServiceUnitName = serviceunitName;
146:            }
147:
148:            /**
149:             * setter for list of application variables used
150:             * @param appVarList list of application variables 
151:             * used by this endpoint
152:             */
153:            public void setApplicationVariables(List appVarList) {
154:                mAppVarList = appVarList;
155:            }
156:
157:            /**
158:             * setter for list of application configurations used
159:             * @param appConfigList list of application configurations associated 
160:             * with this endpoint
161:             */
162:            public void setApplicationConfigurations(List appConfigList) {
163:                mAppConfigList = appConfigList;
164:            }
165:
166:            /**
167:             * This method provides a String representation for an EndpointInfo object
168:             */
169:            public String toString() {
170:                StringBuffer result = new StringBuffer();
171:                result
172:                        .append(" EndpointName=" + mName + " ServiceUnitName="
173:                                + mServiceUnitName + " ComponentName="
174:                                + mComponentName);
175:                if (mAppVarList != null) {
176:                    result.append("Application Variables: " + mAppVarList);
177:                }
178:                if (mAppConfigList != null) {
179:                    result.append("Application Configuration List"
180:                            + mAppConfigList);
181:                }
182:                return result.toString();
183:            }
184:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.