File tree Expand file tree Collapse file tree 7 files changed +26
-9
lines changed
Expand file tree Collapse file tree 7 files changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ public class BasePackage {
2929 private boolean isWorkspace ;
3030 private Date packageTimestamp ;
3131 private String packageOwner = "" ;
32+ private String packageParentId ;
3233
3334 /**
3435 * @returnType String
@@ -263,7 +264,13 @@ public void setPackageOwner(String packageOwner) {
263264 this .packageOwner = packageOwner ;
264265 }
265266 }
266-
267-
268-
267+
268+ public String getPackageParentId () {
269+ return packageParentId ;
270+ }
271+
272+ public void setPackageParentId (String packageParentId ) {
273+ this .packageParentId = packageParentId ;
274+ }
275+
269276}
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ public class PackageInformationResponse extends BaseResponse {
2727 private String rootDirectoryId ;
2828 private Date packageTimestamp ;
2929 private String packageSender ;
30+ private String packageParentId ;
3031
3132 public List <RecipientResponse > getRecipients () {
3233 return recipients ;
@@ -143,7 +144,10 @@ public String getPackageSender() {
143144 public void setPackageSender (String packageSender ) {
144145 this .packageSender = packageSender ;
145146 }
146-
147-
148-
147+ public String getPackageParentId () {
148+ return packageParentId ;
149+ }
150+ public void setPackageParentId (String packageParentId ) {
151+ this .packageParentId = packageParentId ;
152+ }
149153}
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ public class PackageListResponse extends BaseResponse {
2323 private boolean packageIsVdr ;
2424 private String packageUserName ;
2525 private Date packageUpdateTimestamp ;
26+ private String packageParentId ;
2627
2728 public List <String > getRecipients () {
2829 return recipients ;
@@ -124,7 +125,10 @@ public int getPackageState() {
124125 public void setPackageState (int packageState ) {
125126 this .packageState = packageState ;
126127 }
127-
128-
129-
128+ public String getPackageParentId () {
129+ return packageParentId ;
130+ }
131+ public void setPackageParentId (String packageParentId ) {
132+ this .packageParentId = packageParentId ;
133+ }
130134}
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ protected PackageReference convert(PackageListResponse obj) {
6868 info .setState (obj .getState ());
6969 info .setPackageTimestamp (obj .getPackageUpdateTimestamp ());
7070 info .setPackageOwner (obj .getPackageUserName ());
71+ info .setPackageParentId (obj .getPackageParentId ());
7172
7273 return info ;
7374 }
Original file line number Diff line number Diff line change @@ -88,6 +88,7 @@ protected Package convert(PackageInformationResponse obj)
8888 info .setIsWorkspace (obj .isVDR ());
8989 info .setPackageTimestamp (obj .getPackageTimestamp ());
9090 info .setPackageOwner (obj .getPackageSender ());
91+ info .setPackageParentId (obj .getPackageParentId ());
9192 return info ;
9293 }
9394
You can’t perform that action at this time.
0 commit comments