/** * * * <pre><code> * FulfillmentAction fulfillmentaction = new FulfillmentAction(); * CountDownLatch latch = fulfillmentaction.resendPackageFulfillmentEmail( action, orderId, responseFields, callback ); * latch.await() * </code></pre> * * @param orderId * @param responseFields * @param callback callback handler for asynchronous operations * @param action * @return com.mozu.api.contracts.commerceruntime.orders.Order * @see com.mozu.api.contracts.commerceruntime.orders.Order * @see com.mozu.api.contracts.commerceruntime.fulfillment.FulfillmentAction */ public CountDownLatch resendPackageFulfillmentEmailAsync( com.mozu.api.contracts.commerceruntime.fulfillment.FulfillmentAction action, String orderId, String responseFields, AsyncCallback<com.mozu.api.contracts.commerceruntime.orders.Order> callback) throws Exception { MozuClient<com.mozu.api.contracts.commerceruntime.orders.Order> client = com.mozu.api.clients.commerce.orders.FulfillmentActionClient .resendPackageFulfillmentEmailClient(action, orderId, responseFields); client.setContext(_apiContext); return client.executeRequest(callback); }
/** * * * <pre><code> * FulfillmentAction fulfillmentaction = new FulfillmentAction(); * Order order = fulfillmentaction.resendPackageFulfillmentEmail( action, orderId, responseFields); * </code></pre> * * @param orderId * @param responseFields * @param action * @return com.mozu.api.contracts.commerceruntime.orders.Order * @see com.mozu.api.contracts.commerceruntime.orders.Order * @see com.mozu.api.contracts.commerceruntime.fulfillment.FulfillmentAction */ public com.mozu.api.contracts.commerceruntime.orders.Order resendPackageFulfillmentEmail( com.mozu.api.contracts.commerceruntime.fulfillment.FulfillmentAction action, String orderId, String responseFields) throws Exception { MozuClient<com.mozu.api.contracts.commerceruntime.orders.Order> client = com.mozu.api.clients.commerce.orders.FulfillmentActionClient .resendPackageFulfillmentEmailClient(action, orderId, responseFields); client.setContext(_apiContext); client.executeRequest(); return client.getResult(); }