-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ercetools-models/src/main/java/io/sphere/sdk/carts/commands/updateactions/FreezeCart.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.sphere.sdk.carts.commands.updateactions; | ||
|
||
import io.sphere.sdk.carts.Cart; | ||
import io.sphere.sdk.commands.UpdateActionImpl; | ||
|
||
public class FreezeCart extends UpdateActionImpl<Cart> { | ||
private FreezeCart() { | ||
super("freezeCart"); | ||
} | ||
|
||
public static FreezeCart of() { | ||
return new FreezeCart(); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
...cetools-models/src/main/java/io/sphere/sdk/carts/commands/updateactions/UnfreezeCart.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package io.sphere.sdk.carts.commands.updateactions; | ||
|
||
import io.sphere.sdk.carts.Cart; | ||
import io.sphere.sdk.commands.UpdateActionImpl; | ||
|
||
public class UnfreezeCart extends UpdateActionImpl<Cart> { | ||
private UnfreezeCart() { | ||
super("unfreezeCart"); | ||
} | ||
|
||
public static UnfreezeCart of() { | ||
return new UnfreezeCart(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters