Codota Logo
io.sphere.sdk.orders.commands.updateactions
Code IndexAdd Codota to your IDE (free)

How to use io.sphere.sdk.orders.commands.updateactions

Best Java code snippets using io.sphere.sdk.orders.commands.updateactions (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
ScheduledThreadPoolExecutor s =
  • Codota Iconnew ScheduledThreadPoolExecutor(corePoolSize)
  • Codota IconThreadFactory threadFactory;new ScheduledThreadPoolExecutor(corePoolSize, threadFactory)
  • Codota IconString str;new ScheduledThreadPoolExecutor(1, new ThreadFactoryBuilder().setNameFormat(str).build())
  • Smart code suggestions by Codota
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param customLineItemId initial value for the  property
  * @param shippingDetails initial value for the  property
  * @return new object initialized with the given values
  */
 public static SetCustomLineItemShippingDetails of(final String customLineItemId,
   final ItemShippingDetailsDraft shippingDetails) {
  return new SetCustomLineItemShippingDetails(customLineItemId, shippingDetails);
 }
}
origin: io.sphere.sdk.jvm/models

public static TransitionLineItemState of(final String lineItemId, final long quantity,
                     final Reference<State> fromState, final Reference<State> toState,
                     final Optional<Instant> actualTransitionDate) {
  return new TransitionLineItemState(lineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: io.sphere.sdk.jvm/models

public static AddParcelToDelivery of(final String deliveryId, final ParcelDraft parcelDraft) {
  return new AddParcelToDelivery(deliveryId, parcelDraft.getMeasurements(), parcelDraft.getTrackingData());
}
origin: io.sphere.sdk.jvm/sphere-models

public static TransitionCustomLineItemState of(final String customLineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionCustomLineItemState(customLineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a copied update action initialized with the given parameter, the rest of the parameters are copied from the original object.
  *
  * @return new object initialized with the copied values from the original object
  */
 public SetParcelItems withItems(final List<DeliveryItem> items) {
  return new SetParcelItems(getParcelId(), items);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a copied update action initialized with the given parameter, the rest of the parameters are copied from the original object.
  *
  * @return new object initialized with the copied values from the original object
  */
 public SetParcelTrackingData withTrackingData(final TrackingData trackingData) {
  return new SetParcelTrackingData(getParcelId(), trackingData);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a copied update action initialized with the given parameter, the rest of the parameters are copied from the original object.
  *
  * @return new object initialized with the copied values from the original object
  */
 public SetParcelMeasurements withMeasurements(final ParcelMeasurements measurements) {
  return new SetParcelMeasurements(getParcelId(), measurements);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param deliveryId initial value for the  property
  * @return new object initialized with the given values
  */
 public static RemoveDelivery of(final String deliveryId) {
  return new RemoveDelivery(deliveryId);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @return new object initialized with the given values
  */
 public static SetCustomerId ofUnset() {
  return new SetCustomerId(null);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param addressKey initial value for the  property
  * @return new object initialized with the given values
  */
 public static RemoveItemShippingAddress of(final String addressKey) {
  return new RemoveItemShippingAddress(addressKey);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param address initial value for the  property
  * @return new object initialized with the given values
  */
 public static UpdateItemShippingAddress of(final Address address) {
  return new UpdateItemShippingAddress(address);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param address initial value for the  property
  * @return new object initialized with the given values
  */
 public static AddItemShippingAddress of(final Address address) {
  return new AddItemShippingAddress(address);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param parcelId initial value for the  property
  * @return new object initialized with the given values
  */
 public static RemoveParcelFromDelivery of(final String parcelId) {
  return new RemoveParcelFromDelivery(parcelId);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param lineItemId initial value for the  property
  * @param shippingDetails initial value for the  property
  * @return new object initialized with the given values
  */
 public static SetLineItemShippingDetails of(final String lineItemId,
   final ItemShippingDetailsDraft shippingDetails) {
  return new SetLineItemShippingDetails(lineItemId, shippingDetails);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

 /**
  * Creates a new object initialized with the given values.
  *
  * @param deliveryId initial value for the  property
  * @param items initial value for the  property
  * @return new object initialized with the given values
  */
 public static SetDeliveryItems of(final String deliveryId, final List<DeliveryItem> items) {
  return new SetDeliveryItems(deliveryId, items);
 }
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

public static TransitionLineItemState of(final String lineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionLineItemState(lineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: com.commercetools.sdk.jvm.core/commercetools-models

public static TransitionCustomLineItemState of(final String customLineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionCustomLineItemState(customLineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: io.sphere.sdk.jvm/sphere-models

public static TransitionLineItemState of(final String lineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionLineItemState(lineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: commercetools/commercetools-jvm-sdk

public static TransitionCustomLineItemState of(final String customLineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionCustomLineItemState(customLineItemId, quantity, fromState, toState, actualTransitionDate);
}
origin: commercetools/commercetools-jvm-sdk

public static TransitionLineItemState of(final String lineItemId, final long quantity,
                     final Referenceable<State> fromState, final Referenceable<State> toState,
                     final ZonedDateTime actualTransitionDate) {
  return new TransitionLineItemState(lineItemId, quantity, fromState, toState, actualTransitionDate);
}
io.sphere.sdk.orders.commands.updateactions

Most used classes

  • AddDelivery
    Adds a delivery. intro io.sphere.sdk.orders.commands.OrderUpdateCommandTest#addDelivery()
  • AddParcelToDelivery
    Adds a parcel to a delivery. intro io.sphere.sdk.orders.commands.OrderUpdateCommandIntegrationTest#a
  • AddReturnInfo
    Adds return data to an order. intro io.sphere.sdk.orders.commands.OrderUpdateCommandTest#addReturnIn
  • ChangeOrderState
    Changes the order state. intro io.sphere.sdk.orders.commands.OrderUpdateCommandIntegrationTest#chang
  • ChangePaymentState
    Changes the payment state. intro io.sphere.sdk.orders.commands.OrderUpdateCommandIntegrationTest#cha
  • SetOrderNumber,
  • SetReturnPaymentState,
  • SetReturnShipmentState,
  • TransitionLineItemState,
  • UpdateSyncInfo,
  • AddPayment,
  • ImportCustomLineItemState,
  • ImportLineItemState,
  • RemovePayment,
  • SetCustomField,
  • SetCustomLineItemCustomField,
  • SetCustomLineItemCustomType,
  • SetCustomType,
  • TransitionCustomLineItemState
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now