File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
src/main/java/com/microsoft/azure/servicebus Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 44 <modelVersion>4.0.0</modelVersion>
55 <groupId>com.microsoft.azure</groupId>
66 <artifactId>azure-servicebus</artifactId>
7- <version>1.2.10 </version>
7+ <version>1.2.11 </version>
88 <licenses>
99 <license>
1010 <name>The MIT License (MIT)</name>
Original file line number Diff line number Diff line change 11package com .microsoft .azure .servicebus ;
22
3+ import java .io .Serializable ;
34import java .util .List ;
45
56/**
89 * Client should test for body type before calling corresponding get method.
910 * Get methods not corresponding to the type of the body return null.
1011 */
11- public class MessageBody {
12- private MessageBodyType bodyType ;
12+ public class MessageBody implements Serializable {
13+
14+ private static final long serialVersionUID = 7215009530928988502L ;
15+
16+ private MessageBodyType bodyType ;
1317 private Object valueData ;
1418 private List <List <Object >> sequenceData ;
1519 private List <byte []> binaryData ;
Original file line number Diff line number Diff line change 1313 <proton-j-version >0.31.0</proton-j-version >
1414 <junit-version >4.12</junit-version >
1515 <slf4j-version >1.7.0</slf4j-version >
16- <client-current-version >1.2.10 </client-current-version >
16+ <client-current-version >1.2.11 </client-current-version >
1717 </properties >
1818
1919 <modules >
You can’t perform that action at this time.
0 commit comments