Skip to content

Instantly share code, notes, and snippets.

@SeanTAllen
Created December 30, 2013 21:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanTAllen/8188573 to your computer and use it in GitHub Desktop.
Save SeanTAllen/8188573 to your computer and use it in GitHub Desktop.
Correct file layout for Chapter 4 of Storm Applied
.
├── README.md
├── pom.xml
└── src
└── main
├── java
│   └── stormapplied
│   └── creditcard
│   ├── LocalTopologyRunner.java
│   ├── Order.java
│   ├── services
│   │   ├── AuthorizationService.java
│   │   ├── NotificationService.java
│   │   └── OrderDao.java
│   └── topology
│   ├── AuthorizeCreditCard.java
│   ├── ProcessedOrderNotification.java
│   ├── Spout.java
│   └── VerifyOrderStatus.java
└── resources
└── orders.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment