-
Notifications
You must be signed in to change notification settings - Fork 0
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
29 changed files
with
374 additions
and
279 deletions.
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
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
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
12 changes: 0 additions & 12 deletions
12
...java/net/furizon/backend/feature/pretix/order/action/addAnswer/AddPretixAnswerAction.java
This file was deleted.
Oops, something went wrong.
6 changes: 5 additions & 1 deletion
6
.../net/furizon/backend/feature/pretix/order/action/insertNewOrder/InsertNewOrderAction.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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package net.furizon.backend.feature.pretix.order.action.insertNewOrder; | ||
|
||
import net.furizon.backend.feature.pretix.order.Order; | ||
import net.furizon.backend.infrastructure.pretix.service.PretixInformation; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface InsertNewOrderAction { | ||
void invoke(@NotNull Order order); | ||
void invoke( | ||
@NotNull final Order order, | ||
@NotNull final PretixInformation pretixInformation | ||
); | ||
} |
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
12 changes: 12 additions & 0 deletions
12
...va/net/furizon/backend/feature/pretix/order/action/pushAnswer/PushPretixAnswerAction.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,12 @@ | ||
package net.furizon.backend.feature.pretix.order.action.pushAnswer; | ||
|
||
import net.furizon.backend.feature.pretix.order.Order; | ||
import net.furizon.backend.infrastructure.pretix.service.PretixInformation; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface PushPretixAnswerAction { | ||
boolean invoke( | ||
@NotNull final Order order, | ||
@NotNull final PretixInformation pretixInformation | ||
); | ||
} |
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
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
6 changes: 5 additions & 1 deletion
6
...n/java/net/furizon/backend/feature/pretix/order/action/updateOrder/UpdateOrderAction.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 |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package net.furizon.backend.feature.pretix.order.action.updateOrder; | ||
|
||
import net.furizon.backend.feature.pretix.order.Order; | ||
import net.furizon.backend.infrastructure.pretix.service.PretixInformation; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface UpdateOrderAction { | ||
void invoke(@NotNull Order order); | ||
void invoke( | ||
@NotNull final Order order, | ||
@NotNull final PretixInformation pretixInformation | ||
); | ||
} |
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
3 changes: 2 additions & 1 deletion
3
...n/java/net/furizon/backend/feature/pretix/order/action/upsertOrder/UpsertOrderAction.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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package net.furizon.backend.feature.pretix.order.action.upsertOrder; | ||
|
||
import net.furizon.backend.feature.pretix.order.Order; | ||
import net.furizon.backend.infrastructure.pretix.service.PretixInformation; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public interface UpsertOrderAction { | ||
void invoke(@NotNull Order order); | ||
void invoke(@NotNull Order order, @NotNull PretixInformation pretixInformation); | ||
} |
Oops, something went wrong.