Skip to content

Commit fe8927c

Browse files
committed
commenting out SdkTracker code for CreatePlanRequest, CreateSubscriptionRequest and UpdateSubscription
1 parent 36b6052 commit fe8927c

1 file changed

Lines changed: 36 additions & 36 deletions

File tree

src/main/java/utilities/tracking/SdkTracker.java

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -213,20 +213,20 @@ public Object insertDeveloperIdTracker(Object requestObj, String requestClass, S
213213
case "CreatePlanRequest":
214214
CreatePlanRequest createPlanRequest = (CreatePlanRequest)requestObj;
215215

216-
if (createPlanRequest.getClientReferenceInformation() == null)
217-
{
218-
createPlanRequest.setClientReferenceInformation(new Rbsv1plansClientReferenceInformation());
219-
}
216+
// if (createPlanRequest.getClientReferenceInformation() == null)
217+
// {
218+
// createPlanRequest.setClientReferenceInformation(new Rbsv1plansClientReferenceInformation());
219+
// }
220220

221-
if (createPlanRequest.getClientReferenceInformation().getPartner() == null)
222-
{
223-
createPlanRequest.getClientReferenceInformation().setPartner(new Riskv1decisionsClientReferenceInformationPartner());
224-
}
221+
// if (createPlanRequest.getClientReferenceInformation().getPartner() == null)
222+
// {
223+
// createPlanRequest.getClientReferenceInformation().setPartner(new Riskv1decisionsClientReferenceInformationPartner());
224+
// }
225225

226-
if (createPlanRequest.getClientReferenceInformation().getPartner().getDeveloperId() == null)
227-
{
228-
createPlanRequest.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
229-
}
226+
// if (createPlanRequest.getClientReferenceInformation().getPartner().getDeveloperId() == null)
227+
// {
228+
// createPlanRequest.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
229+
// }
230230

231231
return createPlanRequest;
232232
case "RefundCaptureRequest":
@@ -308,39 +308,39 @@ public Object insertDeveloperIdTracker(Object requestObj, String requestClass, S
308308
case "CreateSubscriptionRequest":
309309
CreateSubscriptionRequest createSubscriptionRequest = (CreateSubscriptionRequest)requestObj;
310310

311-
if (createSubscriptionRequest.getClientReferenceInformation() == null)
312-
{
313-
createSubscriptionRequest.setClientReferenceInformation(new Rbsv1subscriptionsClientReferenceInformation());
314-
}
311+
// if (createSubscriptionRequest.getClientReferenceInformation() == null)
312+
// {
313+
// createSubscriptionRequest.setClientReferenceInformation(new Rbsv1subscriptionsClientReferenceInformation());
314+
// }
315315

316-
if (createSubscriptionRequest.getClientReferenceInformation().getPartner() == null)
317-
{
318-
createSubscriptionRequest.getClientReferenceInformation().setPartner(new Rbsv1subscriptionsClientReferenceInformationPartner());
319-
}
316+
// if (createSubscriptionRequest.getClientReferenceInformation().getPartner() == null)
317+
// {
318+
// createSubscriptionRequest.getClientReferenceInformation().setPartner(new Rbsv1subscriptionsClientReferenceInformationPartner());
319+
// }
320320

321-
if (createSubscriptionRequest.getClientReferenceInformation().getPartner().getDeveloperId() == null)
322-
{
323-
createSubscriptionRequest.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
324-
}
321+
// if (createSubscriptionRequest.getClientReferenceInformation().getPartner().getDeveloperId() == null)
322+
// {
323+
// createSubscriptionRequest.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
324+
// }
325325

326326
return createSubscriptionRequest;
327327
case "UpdateSubscription":
328328
UpdateSubscription updateSubscription = (UpdateSubscription)requestObj;
329329

330-
if (updateSubscription.getClientReferenceInformation() == null)
331-
{
332-
updateSubscription.setClientReferenceInformation(new Rbsv1subscriptionsClientReferenceInformation());
333-
}
330+
// if (updateSubscription.getClientReferenceInformation() == null)
331+
// {
332+
// updateSubscription.setClientReferenceInformation(new Rbsv1subscriptionsClientReferenceInformation());
333+
// }
334334

335-
if (updateSubscription.getClientReferenceInformation().getPartner() == null)
336-
{
337-
updateSubscription.getClientReferenceInformation().setPartner(new Rbsv1subscriptionsClientReferenceInformationPartner());
338-
}
335+
// if (updateSubscription.getClientReferenceInformation().getPartner() == null)
336+
// {
337+
// updateSubscription.getClientReferenceInformation().setPartner(new Rbsv1subscriptionsClientReferenceInformationPartner());
338+
// }
339339

340-
if (updateSubscription.getClientReferenceInformation().getPartner().getDeveloperId() == null)
341-
{
342-
updateSubscription.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
343-
}
340+
// if (updateSubscription.getClientReferenceInformation().getPartner().getDeveloperId() == null)
341+
// {
342+
// updateSubscription.getClientReferenceInformation().getPartner().setDeveloperId(developerIdValue);
343+
// }
344344

345345
return updateSubscription;
346346
case "TaxRequest":

0 commit comments

Comments
 (0)