@@ -169,15 +169,10 @@ public void setTimestamp(Date timestamp) {
169
169
this .timestamp = timestamp ; //NOSONAR
170
170
}
171
171
172
- // NOTE qpid java timestamp is long, presumably can convert to Date.
173
172
public Date getTimestamp () {
174
173
return this .timestamp ; //NOSONAR
175
174
}
176
175
177
- // NOTE Not forward compatible with qpid 1.0 .NET
178
- // qpid 0.8 .NET/Java: is a string
179
- // qpid 1.0 .NET: MessageId property on class MessageProperties and is UUID
180
- // There is an 'ID' stored IMessage class and is an int.
181
176
public void setMessageId (String messageId ) {
182
177
this .messageId = messageId ;
183
178
}
@@ -190,9 +185,6 @@ public void setUserId(String userId) {
190
185
this .userId = userId ;
191
186
}
192
187
193
- // NOTE Note forward compatible with qpid 1.0 .NET
194
- // qpid 0.8 .NET/java: is a string
195
- // qpid 1.0 .NET: getUserId is byte[]
196
188
public String getUserId () {
197
189
return this .userId ;
198
190
}
@@ -218,9 +210,6 @@ public String getAppId() {
218
210
return this .appId ;
219
211
}
220
212
221
- // NOTE not forward compatible with qpid 1.0 .NET
222
- // qpid 0.8 .NET/Java: is a string
223
- // qpid 1.0 .NET: is not present
224
213
public void setClusterId (String clusterId ) {
225
214
this .clusterId = clusterId ;
226
215
}
@@ -233,7 +222,6 @@ public void setType(String type) {
233
222
this .type = type ;
234
223
}
235
224
236
- // NOTE structureType is int in Qpid
237
225
public String getType () {
238
226
return this .type ;
239
227
}
0 commit comments