Source Code Cross Referenced for JonasMqConnectPlatformForm.java in  » J2EE » JOnAS-4.8.6 » org » objectweb » jonas » webapp » jonasadmin » jonasmqconnect » 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 » J2EE » JOnAS 4.8.6 » org.objectweb.jonas.webapp.jonasadmin.jonasmqconnect 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        package org.objectweb.jonas.webapp.jonasadmin.jonasmqconnect;
002:
003:        import org.apache.struts.action.ActionForm;
004:
005:        public class JonasMqConnectPlatformForm extends ActionForm {
006:            /**
007:             * debug or not
008:             */
009:            private boolean debug = false;
010:
011:            /**
012:             * printe debug msg
013:             * @param s msg
014:             */
015:            private void debug(String s) {
016:                if (debug)
017:                    System.out.println(s);
018:            }
019:
020:            /**
021:             * Version of the connector
022:             */
023:            private String version = "1.0.0";
024:
025:            /**
026:             * Name of the connector
027:             */
028:            private String connector;
029:
030:            /**
031:             * Hostname of the connector
032:             */
033:            private String hostname;
034:
035:            /**
036:             * Channel of the connector
037:             */
038:            private String channel;
039:
040:            /**
041:             * Port of the connector
042:             */
043:            private String port;
044:
045:            /**
046:             * QueueManager of the connector
047:             */
048:            private String queueManager;
049:
050:            /**
051:             * TransportType of the connector
052:             */
053:            private String transportType;
054:
055:            /**
056:             * @return the version
057:             */
058:            public String getVersion() {
059:                return version;
060:            }
061:
062:            /**
063:             * @param version the version to set
064:             */
065:            public void setVersion(String version) {
066:                this .version = version;
067:            }
068:
069:            /**
070:             * get the name of the connector
071:             * @return hostname
072:             */
073:            public String getConnector() {
074:                debug("JonasMqConnectForm#getConnector");
075:                return connector;
076:            }
077:
078:            /**
079:             * set the name of the connector
080:             * @param connector
081:             */
082:            public void setConnector(String connector) {
083:                debug("JonasMqConnectForm#setConnector(" + connector + ")");
084:                this .connector = connector;
085:            }
086:
087:            /**
088:             * get the hostname of the connector
089:             * @return hostname
090:             */
091:            public String getHostname() {
092:                debug("JonasMqConnectForm#getHostname");
093:                return hostname;
094:            }
095:
096:            /**
097:             * set the hostname of the connector
098:             * @param hostname
099:             */
100:            public void setHostname(String hostname) {
101:                debug("JonasMqConnectForm#setHostname(" + hostname + ")");
102:                this .hostname = hostname;
103:            }
104:
105:            /**
106:             * get the channel of the connector
107:             * @return channel
108:             */
109:            public String getChannel() {
110:                debug("JonasMqConnectForm#getChannel");
111:                return channel;
112:            }
113:
114:            /**
115:             * set the channel of the connector
116:             * @param channel
117:             */
118:            public void setChannel(String channel) {
119:                debug("JonasMqConnectForm#setChannel(" + channel + ")");
120:                this .channel = channel;
121:            }
122:
123:            /**
124:             * get the port of the connector
125:             * @return port
126:             */
127:            public String getPort() {
128:                debug("JonasMqConnectForm#getPort");
129:                return port;
130:            }
131:
132:            /**
133:             * set the port of the connector
134:             * @param port
135:             */
136:            public void setPort(String port) {
137:                debug("JonasMqConnectForm#setPort(" + port + ")");
138:                this .port = port;
139:            }
140:
141:            /**
142:             * get the queueManager of the connector
143:             * @return queueManager
144:             */
145:            public String getQueueManager() {
146:                debug("JonasMqConnectForm#getQueueManager");
147:                return queueManager;
148:            }
149:
150:            /**
151:             * set the queueManager of the connector
152:             * @param queueManager
153:             */
154:            public void setQueueManager(String queueManager) {
155:                debug("JonasMqConnectForm#setQueueManager(" + queueManager
156:                        + ")");
157:                this .queueManager = queueManager;
158:            }
159:
160:            /**
161:             * get the transportType of the connector
162:             * @return transportType
163:             */
164:            public String getTransportType() {
165:                debug("JonasMqConnectForm#getTransportType");
166:                return transportType;
167:            }
168:
169:            /**
170:             * set the transportType of the connector
171:             * @param transportType
172:             */
173:            public void setTransportType(String transportType) {
174:                debug("JonasMqConnectForm#setTransportType(" + transportType
175:                        + ")");
176:                this.transportType = transportType;
177:            }
178:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.