Skip to content
Snippets Groups Projects
Commit 10c77a6f authored by Loïc Ortola's avatar Loïc Ortola
Browse files

fix: renaming resources

parent c8f0045f
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.3</version>
<version>3.4.5</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>io.takima</groupId>
......
package io.takima.temporalpractice.bakery;
public class CookieOrderer {
public class MakeCookiesApp {
public static void main(String[] args) {
}
}
package io.takima.temporalpractice.bakery;
public class OrderCookiesApp {
public static void main(String[] args) {
}
}
package io.takima.temporalpractice.bakery.cookie;
public class BestCookieWorkflow {
public void orderCookie() {
System.out.println("Cookie ordered... Miam");
}
}
package io.takima.temporalpractice.bakery.kitchen;
public class KitchenWorkflowImpl {
public void makeCookies() {
System.out.println("I'm making cookies");
System.out.println("Cookies are done!");
}
}
package io.takima.temporalpractice.bakery.bake;
package io.takima.temporalpractice.bakery.kitchen.bake;
public interface BakeService {
void bake();
......
package io.takima.temporalpractice.bakery.batter;
package io.takima.temporalpractice.bakery.kitchen.batter;
public interface BatterService {
void prepareBatter();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment