001: /*--
002:
003: Copyright (C) 2002 Anthony Eden.
004: All rights reserved.
005:
006: Redistribution and use in source and binary forms, with or without
007: modification, are permitted provided that the following conditions
008: are met:
009:
010: 1. Redistributions of source code must retain the above copyright
011: notice, this list of conditions, and the following disclaimer.
012:
013: 2. Redistributions in binary form must reproduce the above copyright
014: notice, this list of conditions, and the disclaimer that follows
015: these conditions in the documentation and/or other materials
016: provided with the distribution.
017:
018: 3. The names "OBE" and "Open Business Engine" must not be used to
019: endorse or promote products derived from this software without prior
020: written permission. For written permission, please contact
021: me@anthonyeden.com.
022:
023: 4. Products derived from this software may not be called "OBE" or
024: "Open Business Engine", nor may "OBE" or "Open Business Engine"
025: appear in their name, without prior written permission from
026: Anthony Eden (me@anthonyeden.com).
027:
028: In addition, I request (but do not require) that you include in the
029: end-user documentation provided with the redistribution and/or in the
030: software itself an acknowledgement equivalent to the following:
031: "This product includes software developed by
032: Anthony Eden (http://www.anthonyeden.com/)."
033:
034: THIS SOFTWARE IS PROVIdED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
035: WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
036: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
037: DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT,
038: INDIRECT, INCIdENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
039: (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
040: SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
041: HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
042: STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
043: IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
044: POSSIBILITY OF SUCH DAMAGE.
045:
046: For more information on OBE, please see <http://obe.sourceforge.net/>.
047:
048: */
049:
050: package org.wfmc.audit;
051:
052: import java.util.Date;
053:
054: /**
055: * @author Antony Lodge
056: */
057: public abstract class WMASourceWorkflowResponse extends
058: WMATargetWorkflow {
059: private String attributeName;
060: private int attributeType;
061: private int attributeLength;
062: private String attributeValue;
063:
064: protected WMASourceWorkflowResponse() {
065: }
066:
067: /**
068: * @param cwadPrefix
069: * @param messageId
070: * @param extensionNumber
071: * @param extensionType
072: * @param sourceConversationId
073: * @param targetConversationId
074: * @param sourceInitialProcessInstanceId
075: * @param sourceCurrentProcessInstanceId
076: * @param sourceActivityInstanceId
077: * @param sourceTimestamp
078: * @param sourceNodeId
079: * @param sourceUserId
080: * @param sourceRoleId
081: * @param sourceProcessDefinitionId
082: * @param sourceProcessDefinitionBusinessName
083: *
084: * @param sourceActivityDefinitionBusinessName
085: *
086: * @param attributeName
087: * @param attributeType
088: * @param attributeLength
089: * @param attributeValue
090: */
091: protected WMASourceWorkflowResponse(CWADPrefix cwadPrefix,
092: String messageId, short extensionNumber,
093: String extensionType, String sourceConversationId,
094: String targetConversationId,
095: String sourceInitialProcessInstanceId,
096: String sourceCurrentProcessInstanceId,
097: String sourceActivityInstanceId, Date sourceTimestamp,
098: String sourceNodeId, String sourceUserId,
099: String sourceRoleId, String sourceProcessDefinitionId,
100: String sourceProcessDefinitionBusinessName,
101: String sourceActivityDefinitionBusinessName,
102: String attributeName, int attributeType,
103: int attributeLength, String attributeValue) {
104:
105: super (cwadPrefix, messageId, extensionNumber, extensionType,
106: sourceConversationId, targetConversationId,
107: sourceInitialProcessInstanceId,
108: sourceCurrentProcessInstanceId,
109: sourceActivityInstanceId, sourceTimestamp,
110: sourceNodeId, sourceUserId, sourceRoleId,
111: sourceProcessDefinitionId,
112: sourceProcessDefinitionBusinessName,
113: sourceActivityDefinitionBusinessName);
114:
115: this .attributeName = attributeName;
116: this .attributeType = attributeType;
117: this .attributeLength = attributeLength;
118: this .attributeValue = attributeValue;
119: }
120:
121: /**
122: * @return Name of attribute requested
123: */
124: public String getAttributeName() {
125: return attributeName;
126: }
127:
128: /**
129: * @param attributeName Name of attribute requested
130: */
131: public void setAttributeName(String attributeName) {
132: this .attributeName = attributeName;
133: }
134:
135: /**
136: * @return Type of attribute requested
137: */
138: public int getAttributeType() {
139: return attributeType;
140: }
141:
142: /**
143: * @param attributeType Type of attribute requested
144: */
145: public void setAttributeType(int attributeType) {
146: this .attributeType = attributeType;
147: }
148:
149: /**
150: * @return The attribute length.
151: */
152: public int getAttributeLength() {
153: return attributeLength;
154: }
155:
156: /**
157: * @param attributeLength Length of requested attribute
158: */
159: public void setAttributeLength(int attributeLength) {
160: this .attributeLength = attributeLength;
161: }
162:
163: /**
164: * @return Length of requested attribute
165: */
166: public String getAttributeValue() {
167: return attributeValue;
168: }
169:
170: /**
171: * @param attributeValue
172: */
173: public void setAttributeValue(String attributeValue) {
174: this .attributeValue = attributeValue;
175: }
176:
177: public String toString() {
178: return "WMASourceWorkflowResponse@"
179: + System.identityHashCode(this ) + '[' + " cwadPrefix="
180: + formatCwadPrefix() + ", messageId=" + getMessageId()
181: + ", sourceInitialProcessInstanceId="
182: + getSourceInitialProcessInstanceId()
183: + ", sourceCurrentProcessInstanceId="
184: + getSourceCurrentProcessInstanceId()
185: + ", sourceActivityInstanceId="
186: + getSourceActivityInstanceId() + ", sourceTimestamp="
187: + getSourceTimestamp() + ", sourceNodeId="
188: + getSourceNodeId() + ", sourceUserId="
189: + getSourceUserId() + ", sourceRoleId="
190: + getSourceRoleId() + ", sourceProcessDefinitionId="
191: + getSourceProcessDefinitionId()
192: + ", sourceProcessDefinitionBusinessName='"
193: + getSourceProcessDefinitionBusinessName() + '\''
194: + ", sourceActivityDefinitionBusinessName='"
195: + getSourceActivityDefinitionBusinessName() + '\''
196: + ", attributeName='" + attributeName + '\''
197: + ", attributeType=" + attributeType
198: + ", attributeLength=" + attributeLength
199: + ", attributeValue='" + attributeValue + '\''
200: + ", extensionNumber=" + getExtensionNumber()
201: + ", extensionType='" + getExtensionType() + '\''
202: + ", sourceConversationId='"
203: + getSourceConversationId() + '\''
204: + ", targetConversationId='"
205: + getTargetConversationId() + '\'' + ']';
206: }
207: }
|