Source Code Cross Referenced for OperationBean.java in  » Workflow-Engines » Dalma » com » sun » jbi » binding » file » 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 » Workflow Engines » Dalma » com.sun.jbi.binding.file 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        // Copyright (c) 2004-2005 Sun Microsystems Inc., All Rights Reserved.
002:
003:        /*
004:         * OperationBean.java
005:         *
006:         * SUN PROPRIETARY/CONFIDENTIAL.
007:         * This software is the proprietary information of Sun Microsystems, Inc.
008:         * Use is subject to license terms.
009:         *
010:         */
011:        package com.sun.jbi.binding.file;
012:
013:        import javax.xml.namespace.QName;
014:
015:        /**
016:         * Operation information.
017:         *
018:         * @author Sun Microsystems, Inc.
019:         */
020:        public final class OperationBean {
021:            /**
022:             * File extension.
023:             */
024:            private String mFileExtension;
025:
026:            /**
027:             * Input message type.
028:             */
029:            private String mInputType;
030:
031:            /**
032:             * Message exchange pattern.
033:             */
034:            private String mMep;
035:
036:            /**
037:             * Operation name.
038:             */
039:            private String mName;
040:
041:            /**
042:             * Namespace of operation.
043:             */
044:            private String mNamespace;
045:
046:            /**
047:             * Output file prefix.
048:             */
049:            private String mOutputFilePrefix;
050:
051:            /**
052:             * Output message type.
053:             */
054:            private String mOutputType;
055:
056:            /**
057:             * Creates a new OperationBean object.
058:             */
059:            public OperationBean() {
060:            }
061:
062:            /**
063:             * Creates a new OperationBean object.
064:             *
065:             * @param namespace namespace uri
066:             * @param name lcoal name
067:             * @param mep mep
068:             * @param input input type
069:             * @param output output type
070:             * @param ext file extension
071:             * @param prefix prefix
072:             */
073:            public OperationBean(String namespace, String name, String mep,
074:                    String input, String output, String ext, String prefix) {
075:                this .mName = name;
076:                this .mMep = mep;
077:                this .mInputType = input;
078:                this .mOutputType = output;
079:                this .mNamespace = namespace;
080:                this .mFileExtension = ext;
081:                this .mOutputFilePrefix = prefix;
082:            }
083:
084:            /**
085:             * Setter for property mFileExtension.
086:             *
087:             * @param mFileExtension New value of property mFileExtension.
088:             */
089:            public void setFileExtension(java.lang.String mFileExtension) {
090:                this .mFileExtension = mFileExtension;
091:            }
092:
093:            /**
094:             * Getter for property mFileExtension.
095:             *
096:             * @return Value of property mFileExtension.
097:             */
098:            public java.lang.String getFileExtension() {
099:                return mFileExtension;
100:            }
101:
102:            /**
103:             * Setter for property mInputType.
104:             *
105:             * @param mInputType New value of property mInputType.
106:             */
107:            public void setInputType(java.lang.String mInputType) {
108:                this .mInputType = mInputType;
109:            }
110:
111:            /**
112:             * Getter for property mInputType.
113:             *
114:             * @return Value of property mInputType.
115:             */
116:            public java.lang.String getInputType() {
117:                return mInputType;
118:            }
119:
120:            /**
121:             * Setter for property mMep.
122:             *
123:             * @param mMep New value of property mMep.
124:             */
125:            public void setMep(java.lang.String mMep) {
126:                this .mMep = mMep;
127:            }
128:
129:            /**
130:             * Getter for property mMep.
131:             *
132:             * @return Value of property mMep.
133:             */
134:            public java.lang.String getMep() {
135:                return mMep;
136:            }
137:
138:            /**
139:             * Setter for property mName.
140:             *
141:             * @param mName New value of property mName.
142:             */
143:            public void setName(java.lang.String mName) {
144:                this .mName = mName;
145:            }
146:
147:            /**
148:             * Getter for property mName.
149:             *
150:             * @return Value of property mName.
151:             */
152:            public java.lang.String getName() {
153:                return mName;
154:            }
155:
156:            /**
157:             * Sets the namespace.
158:             *
159:             * @param namespace namespace uri.
160:             */
161:            public void setNamespace(String namespace) {
162:                this .mNamespace = namespace;
163:            }
164:
165:            /**
166:             * Returns the namespace uri.
167:             *
168:             * @return namsespace uri.
169:             */
170:            public String getNamespace() {
171:                return this .mNamespace;
172:            }
173:
174:            /**
175:             * Setter for property mOutputFilePrefix.
176:             *
177:             * @param mOutputFilePrefix New value of property mOutputFilePrefix.
178:             */
179:            public void setOutputFilePrefix(java.lang.String mOutputFilePrefix) {
180:                this .mOutputFilePrefix = mOutputFilePrefix;
181:            }
182:
183:            /**
184:             * Getter for property mOutputFilePrefix.
185:             *
186:             * @return Value of property mOutputFilePrefix.
187:             */
188:            public java.lang.String getOutputFilePrefix() {
189:                return mOutputFilePrefix;
190:            }
191:
192:            /**
193:             * Setter for property mOutputType.
194:             *
195:             * @param mOutputType New value of property mOutputType.
196:             */
197:            public void setOutputType(java.lang.String mOutputType) {
198:                this .mOutputType = mOutputType;
199:            }
200:
201:            /**
202:             * Getter for property mOutputType.
203:             *
204:             * @return Value of property mOutputType.
205:             */
206:            public java.lang.String getOutputType() {
207:                return mOutputType;
208:            }
209:
210:            /**
211:             * Returns the Qualified name for operation.
212:             *
213:             * @return qname of operation.
214:             */
215:            public String getQName() {
216:                QName qname = new QName(mNamespace, mName);
217:
218:                return qname.toString();
219:            }
220:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.