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: /**
053: * Section 8.7.4 of the WfMC Interface 5 standard.
054: *
055: * @author Antony Lodge
056: */
057: public class WMASetAttributesTargetWorkflowOperation extends
058: WMARemoteAuditBase {
059: private static final long serialVersionUID = 3598051411325901641L;
060:
061: private String attributeName;
062: private int attributeType;
063: private int attributeLength;
064: private String attributeValue;
065: private int previousAttributeLength;
066: private String previousAttributeValue;
067:
068: public WMASetAttributesTargetWorkflowOperation() {
069: }
070:
071: /**
072: * @param cwadPrefix
073: * @param messageId
074: * @param extensionNumber
075: * @param extensionType
076: * @param sourceConversationId
077: * @param targetConversationId
078: */
079: public WMASetAttributesTargetWorkflowOperation(
080: CWADPrefix cwadPrefix, String messageId,
081: short extensionNumber, String extensionType,
082: String sourceConversationId, String targetConversationId) {
083:
084: super (cwadPrefix, messageId, extensionNumber, extensionType,
085: sourceConversationId, targetConversationId);
086: }
087:
088: /**
089: * @param cwadPrefix
090: * @param messageId
091: * @param extensionNumber
092: * @param extensionType
093: * @param sourceConversationId
094: * @param targetConversationId
095: * @param attributeName
096: * @param attributeType
097: * @param attributeLength
098: * @param attributeValue
099: * @param previousAttributeLength
100: * @param previousAttributeValue
101: */
102: public WMASetAttributesTargetWorkflowOperation(
103: CWADPrefix cwadPrefix, String messageId,
104: short extensionNumber, String extensionType,
105: String sourceConversationId, String targetConversationId,
106: String attributeName, int attributeType,
107: int attributeLength, String attributeValue,
108: int previousAttributeLength, String previousAttributeValue) {
109:
110: super (cwadPrefix, messageId, extensionNumber, extensionType,
111: sourceConversationId, targetConversationId);
112:
113: this .attributeName = attributeName;
114: this .attributeType = attributeType;
115: this .attributeLength = attributeLength;
116: this .attributeValue = attributeValue;
117: this .previousAttributeLength = previousAttributeLength;
118: this .previousAttributeValue = previousAttributeValue;
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: /**
178: * @return The previous attribute length.
179: */
180: public int getPreviousAttributeLength() {
181: return previousAttributeLength;
182: }
183:
184: /**
185: * @param previousAttributeLength
186: */
187: public void setPreviousAttributeLength(int previousAttributeLength) {
188: this .previousAttributeLength = previousAttributeLength;
189: }
190:
191: /**
192: * @return The previous attribute value.
193: */
194: public String getPreviousAttributeValue() {
195: return previousAttributeValue;
196: }
197:
198: /**
199: * @param previousAttributeValue
200: */
201: public void setPreviousAttributeValue(String previousAttributeValue) {
202: this .previousAttributeValue = previousAttributeValue;
203: }
204:
205: public String toString() {
206: return "WMASetAttributesTargetWorkflowOperation@"
207: + System.identityHashCode(this ) + '[' + " cwadPrefix="
208: + formatCwadPrefix() + ", messageId=" + getMessageId()
209: + ", attributeName='" + attributeName + '\''
210: + ", attributeType=" + attributeType
211: + ", attributeLength=" + attributeLength
212: + ", attributeValue='" + attributeValue + '\''
213: + ", previousAttributeLength="
214: + previousAttributeLength
215: + ", previousAttributeValue='" + previousAttributeValue
216: + '\'' + ", extensionNumber=" + getExtensionNumber()
217: + ", extensionType='" + getExtensionType() + '\''
218: + ", sourceConversationId='"
219: + getSourceConversationId() + '\''
220: + ", targetConversationId='"
221: + getTargetConversationId() + '\'' + ']';
222: }
223: }
|